/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
happy-elementor-addons
/
extensions
/
Upload File
HOME
<?php /** * Floating Effects extension class. * * @package Happy_Addons */ namespace Happy_Addons\Elementor\Extension; use Elementor\Element_Base; use Elementor\Controls_Manager; defined( 'ABSPATH' ) || die(); class Floating_Effects { static $should_script_enqueue = false; public static function init() { add_action( 'elementor/element/common/_section_style/after_section_end', [ __CLASS__, 'register' ], 1 ); add_action( 'elementor/frontend/widget/before_render', [ __CLASS__, 'should_script_enqueue' ] ); add_action( 'elementor/preview/enqueue_scripts', [ __CLASS__, 'enqueue_scripts' ] ); } public static function enqueue_scripts() { // Floating effects wp_enqueue_script( 'anime', HAPPY_ADDONS_ASSETS . 'vendor/anime/lib/anime.min.js', null, HAPPY_ADDONS_VERSION, true ); $extension_js = HAPPY_ADDONS_DIR_PATH . 'assets/js/extension-floating-effects.min.js'; if ( file_exists( $extension_js ) ) { wp_add_inline_script( 'elementor-frontend', file_get_contents( $extension_js ) ); } } /** * Set should_script_enqueue based extension settings * * @param Element_Base $section * @return void */ public static function should_script_enqueue( Element_Base $section ) { if ( self::$should_script_enqueue ) { return; } if ( 'yes' == $section->get_settings_for_display( 'ha_floating_fx' ) ) { self::enqueue_scripts(); self::$should_script_enqueue = true; remove_action( 'elementor/frontend/widget/before_render', [ __CLASS__, 'should_script_enqueue' ] ); } } public static function register( Element_Base $element ) { $element->start_controls_section( '_section_floating_effects', [ 'label' => __( 'Floating Effects', 'happy-elementor-addons' ) . ha_get_section_icon(), 'tab' => Controls_Manager::TAB_ADVANCED, ] ); $element->add_control( 'ha_floating_fx', [ 'label' => __( 'Enable', 'happy-elementor-addons' ), 'type' => Controls_Manager::SWITCHER, 'return_value' => 'yes', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_translate_toggle', [ 'label' => __( 'Translate', 'happy-elementor-addons' ), 'type' => Controls_Manager::POPOVER_TOGGLE, 'return_value' => 'yes', 'frontend_available' => true, 'condition' => [ 'ha_floating_fx' => 'yes', ] ] ); $element->start_popover(); $element->add_control( 'ha_floating_fx_translate_x', [ 'label' => __( 'Translate X', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 0, 'to' => 5, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => -100, 'max' => 100, ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_translate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_translate_y', [ 'label' => __( 'Translate Y', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 0, 'to' => 5, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => -100, 'max' => 100, ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_translate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_translate_duration', [ 'label' => __( 'Duration', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 10000, 'step' => 100 ] ], 'default' => [ 'size' => 1000, ], 'condition' => [ 'ha_floating_fx_translate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_translate_delay', [ 'label' => __( 'Delay', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 5000, 'step' => 100 ] ], 'condition' => [ 'ha_floating_fx_translate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->end_popover(); $element->add_control( 'ha_floating_fx_rotate_toggle', [ 'label' => __( 'Rotate', 'happy-elementor-addons' ), 'type' => Controls_Manager::POPOVER_TOGGLE, 'return_value' => 'yes', 'frontend_available' => true, 'condition' => [ 'ha_floating_fx' => 'yes', ] ] ); $element->start_popover(); $element->add_control( 'ha_floating_fx_rotate_x', [ 'label' => __( 'Rotate X', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 0, 'to' => 45, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => -180, 'max' => 180, ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_rotate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_rotate_y', [ 'label' => __( 'Rotate Y', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 0, 'to' => 45, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => -180, 'max' => 180, ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_rotate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_rotate_z', [ 'label' => __( 'Rotate Z', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 0, 'to' => 45, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => -180, 'max' => 180, ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_rotate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_rotate_duration', [ 'label' => __( 'Duration', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 10000, 'step' => 100 ] ], 'default' => [ 'size' => 1000, ], 'condition' => [ 'ha_floating_fx_rotate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_rotate_delay', [ 'label' => __( 'Delay', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 5000, 'step' => 100 ] ], 'condition' => [ 'ha_floating_fx_rotate_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->end_popover(); $element->add_control( 'ha_floating_fx_scale_toggle', [ 'label' => __( 'Scale', 'happy-elementor-addons' ), 'type' => Controls_Manager::POPOVER_TOGGLE, 'return_value' => 'yes', 'frontend_available' => true, 'condition' => [ 'ha_floating_fx' => 'yes', ] ] ); $element->start_popover(); $element->add_control( 'ha_floating_fx_scale_x', [ 'label' => __( 'Scale X', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 1, 'to' => 1.2, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 5, 'step' => .1 ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_scale_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_scale_y', [ 'label' => __( 'Scale Y', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'sizes' => [ 'from' => 1, 'to' => 1.2, ], 'unit' => 'px', ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 5, 'step' => .1 ] ], 'labels' => [ __( 'From', 'happy-elementor-addons' ), __( 'To', 'happy-elementor-addons' ), ], 'scales' => 1, 'handles' => 'range', 'condition' => [ 'ha_floating_fx_scale_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_scale_duration', [ 'label' => __( 'Duration', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 10000, 'step' => 100 ] ], 'default' => [ 'size' => 1000, ], 'condition' => [ 'ha_floating_fx_scale_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->add_control( 'ha_floating_fx_scale_delay', [ 'label' => __( 'Delay', 'happy-elementor-addons' ), 'type' => Controls_Manager::SLIDER, 'size_units' => ['px'], 'range' => [ 'px' => [ 'min' => 0, 'max' => 5000, 'step' => 100 ] ], 'condition' => [ 'ha_floating_fx_scale_toggle' => 'yes', 'ha_floating_fx' => 'yes', ], 'render_type' => 'none', 'frontend_available' => true, ] ); $element->end_popover(); $element->end_controls_section(); } } Floating_Effects::init();