1633 lines
41 KiB
PHP
1633 lines
41 KiB
PHP
<?php
|
|
/**
|
|
* Class: Jet_Elements_Image_Comparison
|
|
* Name: Image Comparison
|
|
* Slug: jet-image-comparison
|
|
*/
|
|
|
|
namespace Elementor;
|
|
|
|
use Elementor\Controls_Manager;
|
|
use Elementor\Group_Control_Border;
|
|
use Elementor\Group_Control_Box_Shadow;
|
|
use Elementor\Group_Control_Typography;
|
|
use Elementor\Repeater;
|
|
use Elementor\Scheme_Color;
|
|
use Elementor\Scheme_Typography;
|
|
use Elementor\Widget_Base;
|
|
use Elementor\Modules\DynamicTags\Module as TagsModule;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
class Jet_Elements_Image_Comparison extends Jet_Elements_Base {
|
|
|
|
public function get_name() {
|
|
return 'jet-image-comparison';
|
|
}
|
|
|
|
public function get_title() {
|
|
return esc_html__( 'Image Comparison', 'jet-elements' );
|
|
}
|
|
|
|
public function get_icon() {
|
|
return 'jet-elements-icon-image-comparison';
|
|
}
|
|
|
|
public function get_jet_help_url() {
|
|
return 'https://crocoblock.com/knowledge-base/articles/how-to-add-before-and-after-images-to-the-elementor-built-page-with-jetelements-image-comparison-widget/';
|
|
}
|
|
|
|
public function get_categories() {
|
|
return array( 'cherry' );
|
|
}
|
|
|
|
public function get_script_depends() {
|
|
return array(
|
|
'jquery-slick',
|
|
'jet-juxtapose',
|
|
);
|
|
}
|
|
|
|
public function get_style_depends() {
|
|
return array( 'jet-juxtapose-css' );
|
|
}
|
|
|
|
protected function _register_controls() {
|
|
|
|
$css_scheme = apply_filters(
|
|
'jet-elements/image-comparison/css-scheme',
|
|
array(
|
|
'instance' => '.jet-image-comparison__instance',
|
|
'jx_instance' => '.jx-slider',
|
|
'before_container' => '.jx-left',
|
|
'before_label' => '.jx-left .jx-label',
|
|
'after_container' => '.jx-right',
|
|
'after_label' => '.jx-right .jx-label',
|
|
'handle' => '.jx-handle',
|
|
'arrow' => '.jet-arrow',
|
|
'dots' => '.jet-slick-dots',
|
|
)
|
|
);
|
|
|
|
$this->start_controls_section(
|
|
'section_items_data',
|
|
array(
|
|
'label' => esc_html__( 'Items', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$repeater = new Repeater();
|
|
|
|
$repeater->add_control(
|
|
'item_before_label',
|
|
array(
|
|
'label' => esc_html__( 'Before Label', 'jet-elements' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
)
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'item_before_image',
|
|
array(
|
|
'label' => esc_html__( 'Before Image', 'jet-elements' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'dynamic' => array(
|
|
'active' => true,
|
|
'categories' => array(
|
|
TagsModule::POST_META_CATEGORY,
|
|
TagsModule::IMAGE_CATEGORY,
|
|
),
|
|
),
|
|
)
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'item_after_label',
|
|
array(
|
|
'label' => esc_html__( 'After Label', 'jet-elements' ),
|
|
'type' => Controls_Manager::TEXT,
|
|
)
|
|
);
|
|
|
|
$repeater->add_control(
|
|
'item_after_image',
|
|
array(
|
|
'label' => esc_html__( 'After Image', 'jet-elements' ),
|
|
'type' => Controls_Manager::MEDIA,
|
|
'dynamic' => array(
|
|
'active' => true,
|
|
'categories' => array(
|
|
TagsModule::POST_META_CATEGORY,
|
|
TagsModule::IMAGE_CATEGORY,
|
|
),
|
|
),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'item_list',
|
|
array(
|
|
'type' => Controls_Manager::REPEATER,
|
|
'fields' => array_values( $repeater->get_controls() ),
|
|
'default' => array(
|
|
array(
|
|
'item_before_label' => esc_html__( 'Before', 'jet-elements' ),
|
|
'item_before_image' => array(
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
),
|
|
'item_after_label' => esc_html__( 'After', 'jet-elements' ),
|
|
'item_after_image' => array(
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
),
|
|
),
|
|
array(
|
|
'item_before_label' => esc_html__( 'Before', 'jet-elements' ),
|
|
'item_before_image' => array(
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
),
|
|
'item_after_label' => esc_html__( 'After', 'jet-elements' ),
|
|
'item_after_image' => array(
|
|
'url' => Utils::get_placeholder_image_src(),
|
|
),
|
|
),
|
|
),
|
|
'title_field' => '{{{ item_before_label }}}',
|
|
)
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
$this->start_controls_section(
|
|
'section_settings',
|
|
array(
|
|
'label' => esc_html__( 'Settings', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'handler_settings_heading',
|
|
array(
|
|
'label' => esc_html__( 'Handler Settings', 'jet-elements' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
)
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'starting_position',
|
|
array(
|
|
'label' => esc_html__( 'Divider Starting Position', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( '%' ),
|
|
'range' => array(
|
|
'%' => array(
|
|
'min' => 0,
|
|
'max' => 100,
|
|
),
|
|
),
|
|
'default' => array(
|
|
'unit' => '%',
|
|
'size' => 50,
|
|
),
|
|
'render_type' => 'template',
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'handle_prev_arrow',
|
|
array(
|
|
'label' => esc_html__( 'Prev Arrow Icon', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'fa fa-angle-left',
|
|
'render_type' => 'template',
|
|
'options' => jet_elements_tools()->get_available_prev_arrows_list(),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'handle_next_arrow',
|
|
array(
|
|
'label' => esc_html__( 'Next Arrow Icon', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'fa fa-angle-right',
|
|
'render_type' => 'template',
|
|
'options' => jet_elements_tools()->get_available_next_arrows_list(),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'carousel_settings_heading',
|
|
array(
|
|
'label' => esc_html__( 'Carousel Settings', 'jet-elements' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
)
|
|
);
|
|
|
|
$this->add_responsive_control(
|
|
'slides_to_show',
|
|
array(
|
|
'label' => esc_html__( 'Slides to Show', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => '1',
|
|
'options' => jet_elements_tools()->get_select_range( 10 ),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'slides_to_scroll',
|
|
array(
|
|
'label' => esc_html__( 'Slides to Scroll', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => '1',
|
|
'options' => jet_elements_tools()->get_select_range( 10 ),
|
|
'condition' => array(
|
|
'slides_to_show!' => '1',
|
|
),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'pause_on_hover',
|
|
array(
|
|
'label' => esc_html__( 'Pause on Hover', 'jet-elements' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'Yes', 'jet-elements' ),
|
|
'label_off' => esc_html__( 'No', 'jet-elements' ),
|
|
'return_value' => 'true',
|
|
'default' => '',
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'autoplay',
|
|
array(
|
|
'label' => esc_html__( 'Autoplay', 'jet-elements' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'Yes', 'jet-elements' ),
|
|
'label_off' => esc_html__( 'No', 'jet-elements' ),
|
|
'return_value' => 'true',
|
|
'default' => 'true',
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'autoplay_speed',
|
|
array(
|
|
'label' => esc_html__( 'Autoplay Speed', 'jet-elements' ),
|
|
'type' => Controls_Manager::NUMBER,
|
|
'default' => 5000,
|
|
'condition' => array(
|
|
'autoplay' => 'true',
|
|
),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'infinite',
|
|
array(
|
|
'label' => esc_html__( 'Infinite Loop', 'jet-elements' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'Yes', 'jet-elements' ),
|
|
'label_off' => esc_html__( 'No', 'jet-elements' ),
|
|
'return_value' => 'true',
|
|
'default' => 'true',
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'effect',
|
|
array(
|
|
'label' => esc_html__( 'Effect', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'slide',
|
|
'options' => array(
|
|
'slide' => esc_html__( 'Slide', 'jet-elements' ),
|
|
'fade' => esc_html__( 'Fade', 'jet-elements' ),
|
|
),
|
|
'condition' => array(
|
|
'slides_to_show' => '1',
|
|
),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'speed',
|
|
array(
|
|
'label' => esc_html__( 'Animation Speed', 'jet-elements' ),
|
|
'type' => Controls_Manager::NUMBER,
|
|
'default' => 500,
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'arrows',
|
|
array(
|
|
'label' => esc_html__( 'Show Arrows Navigation', 'jet-elements' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'Yes', 'jet-elements' ),
|
|
'label_off' => esc_html__( 'No', 'jet-elements' ),
|
|
'return_value' => 'true',
|
|
'default' => 'false',
|
|
)
|
|
);
|
|
|
|
$this->__add_advanced_icon_control(
|
|
'prev_arrow',
|
|
array(
|
|
'label' => esc_html__( 'Prev Arrow Icon', 'jet-elements' ),
|
|
'type' => Controls_Manager::ICON,
|
|
'label_block' => true,
|
|
'file' => '',
|
|
'default' => 'fa fa-angle-left',
|
|
'fa5_default' => array(
|
|
'value' => 'fas fa-angle-left',
|
|
'library' => 'fa-solid',
|
|
),
|
|
'condition' => array(
|
|
'arrows' => 'true',
|
|
),
|
|
)
|
|
);
|
|
|
|
$this->__add_advanced_icon_control(
|
|
'next_arrow',
|
|
array(
|
|
'label' => esc_html__( 'Next Arrow Icon', 'jet-elements' ),
|
|
'type' => Controls_Manager::ICON,
|
|
'label_block' => true,
|
|
'file' => '',
|
|
'default' => 'fa fa-angle-right',
|
|
'fa5_default' => array(
|
|
'value' => 'fas fa-angle-right',
|
|
'library' => 'fa-solid',
|
|
),
|
|
'condition' => array(
|
|
'arrows' => 'true',
|
|
),
|
|
)
|
|
);
|
|
|
|
$this->add_control(
|
|
'dots',
|
|
array(
|
|
'label' => esc_html__( 'Show Dots Navigation', 'jet-elements' ),
|
|
'type' => Controls_Manager::SWITCHER,
|
|
'label_on' => esc_html__( 'Yes', 'jet-elements' ),
|
|
'label_off' => esc_html__( 'No', 'jet-elements' ),
|
|
'return_value' => 'true',
|
|
'default' => 'true',
|
|
)
|
|
);
|
|
|
|
$this->end_controls_section();
|
|
|
|
/**
|
|
* General Style Section
|
|
*/
|
|
$this->__start_controls_section(
|
|
'section_services_general_style',
|
|
array(
|
|
'label' => esc_html__( 'General', 'jet-elements' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'container_padding',
|
|
array(
|
|
'label' => __( 'Padding', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['instance'] => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Border::get_type(),
|
|
array(
|
|
'name' => 'container_border',
|
|
'label' => esc_html__( 'Border', 'jet-elements' ),
|
|
'placeholder' => '1px',
|
|
'default' => '1px',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['instance'],
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'container_border_radius',
|
|
array(
|
|
'label' => __( 'Border Radius', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['instance'] => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
array(
|
|
'name' => 'container_box_shadow',
|
|
'exclude' => array(
|
|
'box_shadow_position',
|
|
),
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['instance'],
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__end_controls_section(100);
|
|
|
|
/**
|
|
* Label Style Section
|
|
*/
|
|
$this->__start_controls_section(
|
|
'section_image_comparison_label_style',
|
|
array(
|
|
'label' => esc_html__( 'Label', 'jet-elements' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
)
|
|
);
|
|
|
|
$this->__start_controls_tabs( 'tabs_label_styles' );
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_label_before',
|
|
array(
|
|
'label' => esc_html__( 'Before', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_control(
|
|
'before_label_horizontal_alignment',
|
|
array(
|
|
'label' => esc_html__( 'Horizontal Alignment', 'jet-elements' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'flex-start',
|
|
'options' => array(
|
|
'flex-start' => array(
|
|
'title' => esc_html__( 'Start', 'jet-elements' ),
|
|
'icon' => ! is_rtl() ? 'eicon-h-align-left' : 'eicon-h-align-right',
|
|
),
|
|
'center' => array(
|
|
'title' => esc_html__( 'Center', 'jet-elements' ),
|
|
'icon' => 'eicon-h-align-center',
|
|
),
|
|
'flex-end' => array(
|
|
'title' => esc_html__( 'End', 'jet-elements' ),
|
|
'icon' => ! is_rtl() ? 'eicon-h-align-right' : 'eicon-h-align-left',
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} '. $css_scheme['before_container'] => 'justify-content: {{VALUE}};',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'before_label_vertical_alignment',
|
|
array(
|
|
'label' => esc_html__( 'Vertical Alignment', 'jet-elements' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'flex-start',
|
|
'options' => array(
|
|
'flex-start' => array(
|
|
'title' => esc_html__( 'Top', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
),
|
|
'center' => array(
|
|
'title' => esc_html__( 'Center', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-middle',
|
|
),
|
|
'flex-end' => array(
|
|
'title' => esc_html__( 'Bottom', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-bottom',
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} '. $css_scheme['before_container'] => 'align-items: {{VALUE}};',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'before_label_color',
|
|
array(
|
|
'label' => esc_html__( 'Color', 'jet-elements' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['before_label'] => 'color: {{VALUE}}',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
array(
|
|
'name' => 'before_label_typography',
|
|
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['before_label'],
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
array(
|
|
'name' => 'before_label_background',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['before_label'],
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_2,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'before_label_margin',
|
|
array(
|
|
'label' => __( 'Margin', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['before_label'] => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'before_label_padding',
|
|
array(
|
|
'label' => __( 'Padding', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['before_label'] => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_label_after',
|
|
array(
|
|
'label' => esc_html__( 'After', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_control(
|
|
'after_label_horizontal_alignment',
|
|
array(
|
|
'label' => esc_html__( 'Horizontal Alignment', 'jet-elements' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'flex-end',
|
|
'options' => array(
|
|
'flex-start' => array(
|
|
'title' => esc_html__( 'Start', 'jet-elements' ),
|
|
'icon' => ! is_rtl() ? 'eicon-h-align-left' : 'eicon-h-align-right',
|
|
),
|
|
'center' => array(
|
|
'title' => esc_html__( 'Center', 'jet-elements' ),
|
|
'icon' => 'eicon-h-align-center',
|
|
),
|
|
'flex-end' => array(
|
|
'title' => esc_html__( 'End', 'jet-elements' ),
|
|
'icon' => ! is_rtl() ? 'eicon-h-align-right' : 'eicon-h-align-left',
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} '. $css_scheme['after_container'] => 'justify-content: {{VALUE}};',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'after_label_vertical_alignment',
|
|
array(
|
|
'label' => esc_html__( 'Vertical Alignment', 'jet-elements' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'flex-start',
|
|
'options' => array(
|
|
'flex-start' => array(
|
|
'title' => esc_html__( 'Top', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
),
|
|
'center' => array(
|
|
'title' => esc_html__( 'Center', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-middle',
|
|
),
|
|
'flex-end' => array(
|
|
'title' => esc_html__( 'Bottom', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-bottom',
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} '. $css_scheme['after_container'] => 'align-items: {{VALUE}};',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'after_label_color',
|
|
array(
|
|
'label' => esc_html__( 'Color', 'jet-elements' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['after_label'] => 'color: {{VALUE}}',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Typography::get_type(),
|
|
array(
|
|
'name' => 'after_label_typography',
|
|
'scheme' => Scheme_Typography::TYPOGRAPHY_1,
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['after_label'],
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
array(
|
|
'name' => 'after_label_background',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['after_label'],
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_2,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'after_label_margin',
|
|
array(
|
|
'label' => __( 'Margin', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['after_label'] => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'after_label_padding',
|
|
array(
|
|
'label' => __( 'Padding', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['after_label'] => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__end_controls_tabs();
|
|
|
|
$this->__end_controls_section();
|
|
|
|
/**
|
|
* Handle Style Section
|
|
*/
|
|
$this->__start_controls_section(
|
|
'section_image_comparison_handle_style',
|
|
array(
|
|
'label' => esc_html__( 'Handle', 'jet-elements' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
)
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_control_alignment',
|
|
array(
|
|
'label' => esc_html__( 'Alignment', 'jet-elements' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'center',
|
|
'label_block' => false,
|
|
'options' => array(
|
|
'flex-start' => array(
|
|
'title' => esc_html__( 'Top', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-top',
|
|
),
|
|
'center' => array(
|
|
'title' => esc_html__( 'Center', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-middle',
|
|
),
|
|
'flex-end' => array(
|
|
'title' => esc_html__( 'Bottom', 'jet-elements' ),
|
|
'icon' => 'eicon-v-align-bottom',
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['jx_instance'] . ' .jx-controller' => 'align-self: {{VALUE}};',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_control_width',
|
|
array(
|
|
'label' => esc_html__( 'Control Width', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => 20,
|
|
'max' => 100,
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] => 'width: {{SIZE}}{{UNIT}}; margin-left: calc( {{SIZE}}{{UNIT}} / -2 );',
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-control' => 'width: {{SIZE}}{{UNIT}};',
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-controller' => 'width: {{SIZE}}{{UNIT}};',
|
|
)
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_control_height',
|
|
array(
|
|
'label' => esc_html__( 'Height', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => 20,
|
|
'max' => 100,
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-controller' => 'height: {{SIZE}}{{UNIT}};',
|
|
)
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_divider_margin',
|
|
array(
|
|
'label' => __( 'Margin', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-controller' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
'separator' => 'before',
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_divider_radius',
|
|
array(
|
|
'label' => __( 'Border Radius', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-controller' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__start_controls_tabs( 'tabs_handle_styles' );
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_handle_normal',
|
|
array(
|
|
'label' => esc_html__( 'Normal', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
array(
|
|
'name' => 'handle_control_background',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['jx_instance'] . ' .jx-controller',
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_1,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'handle_arrow_color',
|
|
array(
|
|
'label' => esc_html__( 'Arrow Color', 'jet-elements' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['jx_instance'] . ' .jx-controller i' => 'color: {{VALUE}}',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
array(
|
|
'name' => 'handle_control_box_shadow',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['jx_instance'] . ' .jx-controller',
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_handle_hover',
|
|
array(
|
|
'label' => esc_html__( 'Hover', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Background::get_type(),
|
|
array(
|
|
'name' => 'handle_control_background_hover',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['jx_instance'] . ':hover .jx-controller',
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_2,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'handle_arrow_color_hover',
|
|
array(
|
|
'label' => esc_html__( 'Arrow Color', 'jet-elements' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['jx_instance'] . ':hover .jx-controller i' => 'color: {{VALUE}}',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
Group_Control_Box_Shadow::get_type(),
|
|
array(
|
|
'name' => 'handle_control_box_shadow_hover',
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['jx_instance'] . ':hover .jx-controller',
|
|
),
|
|
100
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__end_controls_tabs();
|
|
|
|
$this->__add_control(
|
|
'heading_handle_divider_style',
|
|
array(
|
|
'label' => esc_html__( 'Handle Divider', 'jet-elements' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_divider_width',
|
|
array(
|
|
'label' => esc_html__( 'Divider Width', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => 1,
|
|
'max' => 10,
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-control:before' => 'width: {{SIZE}}{{UNIT}}; margin-left: calc( {{SIZE}}{{UNIT}}/-2);',
|
|
)
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_control(
|
|
'handle_divider_color',
|
|
array(
|
|
'label' => esc_html__( 'Divider Color', 'jet-elements' ),
|
|
'type' => Controls_Manager::COLOR,
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-control:before' => 'background-color: {{VALUE}};',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'heading_handle_arrow_style',
|
|
array(
|
|
'label' => esc_html__( 'Handle Arrow', 'jet-elements' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_arrow_size',
|
|
array(
|
|
'label' => esc_html__( 'Icon Size', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array(
|
|
'px', 'em'
|
|
),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => 1,
|
|
'max' => 100,
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['jx_instance'] . ' .jx-controller i' => 'font-size: {{SIZE}}{{UNIT}}',
|
|
),
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'handle_arrow_margin',
|
|
array(
|
|
'label' => __( 'Margin', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['handle'] . ' .jx-controller i' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__end_controls_section();
|
|
|
|
/*
|
|
* Arrows section
|
|
*/
|
|
$this->__start_controls_section(
|
|
'section_arrows_style',
|
|
array(
|
|
'label' => esc_html__( 'Carousel Arrows', 'jet-elements' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
)
|
|
);
|
|
|
|
$this->__start_controls_tabs( 'tabs_arrows_style' );
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_arrows_normal',
|
|
array(
|
|
'label' => esc_html__( 'Normal', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
\Jet_Group_Control_Box_Style::get_type(),
|
|
array(
|
|
'name' => 'arrows_style',
|
|
'label' => esc_html__( 'Arrows Style', 'jet-elements' ),
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['arrow'],
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_1,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_arrows_hover',
|
|
array(
|
|
'label' => esc_html__( 'Hover', 'jet-elements' ),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
\Jet_Group_Control_Box_Style::get_type(),
|
|
array(
|
|
'name' => 'arrows_hover_style',
|
|
'label' => esc_html__( 'Arrows Style', 'jet-elements' ),
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['arrow'] . ':hover',
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_4,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__end_controls_tabs();
|
|
|
|
$this->__add_control(
|
|
'prev_arrow_position',
|
|
array(
|
|
'label' => esc_html__( 'Prev Arrow Position', 'jet-elements' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_control(
|
|
'prev_vert_position',
|
|
array(
|
|
'label' => esc_html__( 'Vertical Position by', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'top',
|
|
'options' => array(
|
|
'top' => esc_html__( 'Top', 'jet-elements' ),
|
|
'bottom' => esc_html__( 'Bottom', 'jet-elements' ),
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'prev_top_position',
|
|
array(
|
|
'label' => esc_html__( 'Top Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'prev_vert_position' => 'top',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.prev-arrow' => 'top: {{SIZE}}{{UNIT}}; bottom: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'prev_bottom_position',
|
|
array(
|
|
'label' => esc_html__( 'Bottom Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'prev_vert_position' => 'bottom',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.prev-arrow' => 'bottom: {{SIZE}}{{UNIT}}; top: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_control(
|
|
'prev_hor_position',
|
|
array(
|
|
'label' => esc_html__( 'Horizontal Position by', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'left',
|
|
'options' => array(
|
|
'left' => esc_html__( 'Left', 'jet-elements' ),
|
|
'right' => esc_html__( 'Right', 'jet-elements' ),
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'prev_left_position',
|
|
array(
|
|
'label' => esc_html__( 'Left Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'prev_hor_position' => 'left',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.prev-arrow' => 'left: {{SIZE}}{{UNIT}}; right: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'prev_right_position',
|
|
array(
|
|
'label' => esc_html__( 'Right Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'prev_hor_position' => 'right',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.prev-arrow' => 'right: {{SIZE}}{{UNIT}}; left: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_control(
|
|
'next_arrow_position',
|
|
array(
|
|
'label' => esc_html__( 'Next Arrow Position', 'jet-elements' ),
|
|
'type' => Controls_Manager::HEADING,
|
|
'separator' => 'before',
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_control(
|
|
'next_vert_position',
|
|
array(
|
|
'label' => esc_html__( 'Vertical Position by', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'top',
|
|
'options' => array(
|
|
'top' => esc_html__( 'Top', 'jet-elements' ),
|
|
'bottom' => esc_html__( 'Bottom', 'jet-elements' ),
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'next_top_position',
|
|
array(
|
|
'label' => esc_html__( 'Top Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'next_vert_position' => 'top',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.next-arrow' => 'top: {{SIZE}}{{UNIT}}; bottom: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'next_bottom_position',
|
|
array(
|
|
'label' => esc_html__( 'Bottom Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'next_vert_position' => 'bottom',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.next-arrow' => 'bottom: {{SIZE}}{{UNIT}}; top: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_control(
|
|
'next_hor_position',
|
|
array(
|
|
'label' => esc_html__( 'Horizontal Position by', 'jet-elements' ),
|
|
'type' => Controls_Manager::SELECT,
|
|
'default' => 'right',
|
|
'options' => array(
|
|
'left' => esc_html__( 'Left', 'jet-elements' ),
|
|
'right' => esc_html__( 'Right', 'jet-elements' ),
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'next_left_position',
|
|
array(
|
|
'label' => esc_html__( 'Left Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'next_hor_position' => 'left',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.next-arrow' => 'left: {{SIZE}}{{UNIT}}; right: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__add_responsive_control(
|
|
'next_right_position',
|
|
array(
|
|
'label' => esc_html__( 'Right Indent', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => -400,
|
|
'max' => 400,
|
|
),
|
|
'%' => array(
|
|
'min' => -100,
|
|
'max' => 100,
|
|
),
|
|
'em' => array(
|
|
'min' => -50,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'condition' => array(
|
|
'next_hor_position' => 'right',
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['arrow'] . '.next-arrow' => 'right: {{SIZE}}{{UNIT}}; left: auto;',
|
|
),
|
|
),
|
|
75
|
|
);
|
|
|
|
$this->__end_controls_section();
|
|
|
|
/*
|
|
* Dots section
|
|
*/
|
|
$this->__start_controls_section(
|
|
'section_dots_style',
|
|
array(
|
|
'label' => esc_html__( 'Carousel Dots', 'jet-elements' ),
|
|
'tab' => Controls_Manager::TAB_STYLE,
|
|
'show_label' => false,
|
|
)
|
|
);
|
|
|
|
$this->__start_controls_tabs( 'tabs_dots_style' );
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_dots_normal',
|
|
array(
|
|
'label' => esc_html__( 'Normal', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
\Jet_Group_Control_Box_Style::get_type(),
|
|
array(
|
|
'name' => 'dots_style',
|
|
'label' => esc_html__( 'Dots Style', 'jet-elements' ),
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['dots'] .' li span',
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_3,
|
|
),
|
|
),
|
|
),
|
|
'exclude' => array(
|
|
'box_font_color',
|
|
'box_font_size',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_dots_hover',
|
|
array(
|
|
'label' => esc_html__( 'Hover', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
\Jet_Group_Control_Box_Style::get_type(),
|
|
array(
|
|
'name' => 'dots_style_hover',
|
|
'label' => esc_html__( 'Dots Style', 'jet-elements' ),
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['dots'] . ' li span:hover',
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_1,
|
|
),
|
|
),
|
|
),
|
|
'exclude' => array(
|
|
'box_font_color',
|
|
'box_font_size',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__start_controls_tab(
|
|
'tab_dots_active',
|
|
array(
|
|
'label' => esc_html__( 'Active', 'jet-elements' ),
|
|
)
|
|
);
|
|
|
|
$this->__add_group_control(
|
|
\Jet_Group_Control_Box_Style::get_type(),
|
|
array(
|
|
'name' => 'dots_style_active',
|
|
'label' => esc_html__( 'Dots Style', 'jet-elements' ),
|
|
'selector' => '{{WRAPPER}} ' . $css_scheme['dots'] .' li.slick-active span',
|
|
'fields_options' => array(
|
|
'color' => array(
|
|
'scheme' => array(
|
|
'type' => Scheme_Color::get_type(),
|
|
'value' => Scheme_Color::COLOR_4,
|
|
),
|
|
),
|
|
),
|
|
'exclude' => array(
|
|
'box_font_color',
|
|
'box_font_size',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__end_controls_tab();
|
|
|
|
$this->__end_controls_tabs();
|
|
|
|
$this->__add_responsive_control(
|
|
'dots_alignment',
|
|
array(
|
|
'label' => esc_html__( 'Alignment', 'jet-elements' ),
|
|
'type' => Controls_Manager::CHOOSE,
|
|
'default' => 'center',
|
|
'options' => array(
|
|
'flex-start' => array(
|
|
'title' => esc_html__( 'Start', 'jet-elements' ),
|
|
'icon' => ! is_rtl() ? 'eicon-h-align-left' : 'eicon-h-align-right',
|
|
),
|
|
'center' => array(
|
|
'title' => esc_html__( 'Center', 'jet-elements' ),
|
|
'icon' => 'eicon-h-align-center',
|
|
),
|
|
'flex-end' => array(
|
|
'title' => esc_html__( 'End', 'jet-elements' ),
|
|
'icon' => ! is_rtl() ? 'eicon-h-align-right' : 'eicon-h-align-left',
|
|
),
|
|
),
|
|
'separator' => 'before',
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['dots'] => 'justify-content: {{VALUE}};',
|
|
),
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__add_control(
|
|
'dots_gap',
|
|
array(
|
|
'label' => esc_html__( 'Gap', 'jet-elements' ),
|
|
'type' => Controls_Manager::SLIDER,
|
|
'default' => array(
|
|
'size' => 5,
|
|
'unit' => 'px',
|
|
),
|
|
'range' => array(
|
|
'px' => array(
|
|
'min' => 0,
|
|
'max' => 50,
|
|
),
|
|
),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['dots'] . ' li' => 'padding-left: {{SIZE}}{{UNIT}}; padding-right: {{SIZE}}{{UNIT}}',
|
|
),
|
|
),
|
|
25
|
|
);
|
|
|
|
$this->__add_control(
|
|
'dots_margin',
|
|
array(
|
|
'label' => esc_html__( 'Dots Box Margin', 'jet-elements' ),
|
|
'type' => Controls_Manager::DIMENSIONS,
|
|
'size_units' => array( 'px', '%', 'em' ),
|
|
'selectors' => array(
|
|
'{{WRAPPER}} ' . $css_scheme['dots'] => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
|
),
|
|
),
|
|
50
|
|
);
|
|
|
|
$this->__end_controls_section();
|
|
|
|
}
|
|
|
|
/**
|
|
* [render description]
|
|
* @return [type] [description]
|
|
*/
|
|
protected function render() {
|
|
|
|
$this->__context = 'render';
|
|
|
|
$this->__open_wrap();
|
|
|
|
include $this->__get_global_template( 'index' );
|
|
|
|
$this->__close_wrap();
|
|
}
|
|
|
|
/**
|
|
* Generate setting json
|
|
*
|
|
* @return string
|
|
*/
|
|
public function generate_setting_json() {
|
|
$settings = $this->get_settings();
|
|
$widget_id = $this->get_id();
|
|
|
|
$instance_settings = array(
|
|
'slidesToShow' => array(
|
|
'desktop' => absint( $settings['slides_to_show'] ),
|
|
'tablet' => absint( $settings['slides_to_show_tablet'] ),
|
|
'mobile' => absint( $settings['slides_to_show_mobile'] ),
|
|
),
|
|
'autoplaySpeed' => absint( $settings['autoplay_speed'] ),
|
|
'autoplay' => filter_var( $settings['autoplay'], FILTER_VALIDATE_BOOLEAN ),
|
|
'infinite' => filter_var( $settings['infinite'], FILTER_VALIDATE_BOOLEAN ),
|
|
'pauseOnHover' => filter_var( $settings['pause_on_hover'], FILTER_VALIDATE_BOOLEAN ),
|
|
'speed' => absint( $settings['speed'] ),
|
|
'arrows' => filter_var( $settings['arrows'], FILTER_VALIDATE_BOOLEAN ),
|
|
'dots' => filter_var( $settings['dots'], FILTER_VALIDATE_BOOLEAN ),
|
|
'slidesToScroll' => absint( $settings['slides_to_scroll'] ),
|
|
'prevArrow' => '.jet-image-comparison__prev-arrow-' . $widget_id,
|
|
'nextArrow' => '.jet-image-comparison__next-arrow-' . $widget_id,
|
|
'rtl' => is_rtl(),
|
|
);
|
|
|
|
if ( 'fade' === $settings['effect'] ) {
|
|
$instance_settings['fade'] = true;
|
|
}
|
|
|
|
$instance_settings = json_encode( $instance_settings );
|
|
|
|
return sprintf( 'data-settings=\'%1$s\'', $instance_settings );
|
|
}
|
|
}
|