PluginProbe
Button Generator – Easily Create Custom Buttons with Icons and Analytics / trunk
Button Generator – Easily Create Custom Buttons with Icons and Analytics vtrunk
trunk 1.1.1 2.0 2.1 2.2 2.3.2 2.3.3 2.3.4 2.3.5 2.3.6 2.3.7 2.3.8 2.3.9 3.0 3.0.1 3.0.2 3.0.3 3.1 3.1.1 3.1.2 3.1.3 3.2 3.2.1 3.2.2 3.2.3 All 28 releases
button-generation / admin / settings / options / effects.php

effects.php in Button Generator – Easily Create Custom Buttons with Icons and Analytics trunk, at admin/settings/options/effects.php

34 lines 642 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 ];