| 1 |
<?php |
| 2 |
|
| 3 |
use ButtonGenerator\Settings_Helper; |
| 4 |
|
| 5 |
defined( 'ABSPATH' ) || exit; |
| 6 |
|
| 7 |
return [ |
| 8 |
|
| 9 |
// Transition |
| 10 |
'transition_duration' => [ |
| 11 |
'type' => 'number', |
| 12 |
'title' => __( 'Transition Duration', 'button-generation' ), |
| 13 |
'val' => 0.2, |
| 14 |
'atts' => [ |
| 15 |
'step' => 0.1, |
| 16 |
'min' => 0, |
| 17 |
], |
| 18 |
'addon' => 'sec', |
| 19 |
], |
| 20 |
|
| 21 |
'transition_function' => [ |
| 22 |
'type' => 'select', |
| 23 |
'title' => __( 'Transition Function', 'button-generation' ), |
| 24 |
'val' => 'ease', |
| 25 |
'atts' => [ |
| 26 |
'ease' => 'ease', |
| 27 |
'ease-in' => 'ease-in', |
| 28 |
'ease-out' => 'ease-out', |
| 29 |
'ease-in-out' => 'ease-in-out', |
| 30 |
'linear' => 'linear', |
| 31 |
], |
| 32 |
], |
| 33 |
//endregion |
| 34 |
]; |