start_controls_section( 'section_image', [ 'label' => __( 'Image', 'elementor-extras' ), ] ); $this->add_control( 'image', [ 'label' => __( 'Choose Image', 'elementor-extras' ), 'type' => Controls_Manager::MEDIA, 'dynamic' => [ 'active' => true ], 'default' => [ 'url' => Utils::get_placeholder_image_src(), ], ] ); $this->add_group_control( Group_Control_Image_Size::get_type(), [ 'name' => 'image', // Actually its `image_size` 'label' => __( 'Image Size', 'elementor-extras' ), 'default' => 'large', ] ); $this->add_responsive_control( 'align', [ 'label' => __( 'Alignment', 'elementor-extras' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'elementor-extras' ), 'icon' => 'eicon-h-align-left', ], 'center' => [ 'title' => __( 'Center', 'elementor-extras' ), 'icon' => 'eicon-h-align-center', ], 'right' => [ 'title' => __( 'Right', 'elementor-extras' ), 'icon' => 'eicon-h-align-right', ], ], 'default' => 'center', 'selectors' => [ '{{WRAPPER}}' => 'text-align: {{VALUE}};', ], ] ); $this->add_control( 'view', [ 'label' => __( 'View', 'elementor-extras' ), 'type' => Controls_Manager::HIDDEN, 'default' => 'traditional', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_hotspots', [ 'label' => __( 'Hotspots', 'elementor-extras' ), 'condition' => [ 'image[url]!' => '', ] ] ); $repeater = new Repeater(); $repeater->start_controls_tabs( 'hotspots_repeater' ); $repeater->start_controls_tab( 'tab_content', [ 'label' => __( 'Content', 'elementor-extras' ) ] ); $repeater->add_control( 'hotspot', [ 'label' => __( 'Type', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => 'text', 'options' => [ 'text' => __( 'Text', 'elementor-extras' ), 'icon' => __( 'Icon', 'elementor-extras' ), ], ] ); $repeater->add_control( 'text', [ 'default' => __( 'X', 'elementor-extras' ), 'type' => Controls_Manager::TEXT, 'label' => __( 'Text', 'elementor-extras' ), 'separator' => 'none', 'dynamic' => [ 'active' => true, ], 'condition' => [ 'hotspot' => 'text' ] ] ); $repeater->add_control( 'selected_icon', [ 'label' => __( 'Icon', 'elementor-extras' ), 'type' => Controls_Manager::ICONS, 'fa4compatibility' => 'icon', 'skin' => 'inline', 'label_block' => false, 'condition' => [ 'hotspot' => 'icon' ], ] ); $repeater->add_control( 'link', [ 'label' => __( 'Link', 'elementor-extras' ), 'description' => __( 'Active only when tolltips\' Trigger is set to Hover or if tooltip is disabled responsively, below a certain breakpoint.', 'elementor-extras' ), 'type' => Controls_Manager::URL, 'label_block' => false, 'dynamic' => [ 'active' => true, ], 'placeholder' => esc_url( home_url( '/' ) ), 'frontend_available' => true, ] ); $repeater->add_control( 'content', [ 'label' => __( 'Tooltip Content', 'elementor-extras' ), 'type' => Controls_Manager::WYSIWYG, 'dynamic' => [ 'active' => true, ], 'default' => __( 'I am a tooltip for a hotspot', 'elementor-extras' ), ] ); $repeater->add_control( '_item_id', [ 'label' => __( 'CSS ID', 'elementor-extras' ), 'type' => Controls_Manager::TEXT, 'default' => '', 'dynamic' => [ 'active' => true ], 'label_block' => true, 'title' => __( 'Add your custom id WITHOUT the Pound key. e.g: my-id', 'elementor-extras' ), ] ); $repeater->add_control( 'css_classes', [ 'label' => __( 'CSS Classes', 'elementor-extras' ), 'type' => Controls_Manager::TEXT, 'default' => '', 'prefix_class' => '', 'dynamic' => [ 'active' => true ], 'label_block' => true, 'title' => __( 'Add your custom class WITHOUT the dot. e.g: my-class', 'elementor-extras' ), ] ); $repeater->end_controls_tab(); $repeater->start_controls_tab( 'tab_style', [ 'label' => __( 'Style', 'elementor-extras' ) ] ); $repeater->add_control( 'default', [ 'label' => __( 'Default', 'elementor-extras' ), 'type' => Controls_Manager::HEADING, ] ); $repeater->add_control( 'color', [ 'label' => __( 'Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}} .ee-hotspot__wrapper' => 'color: {{VALUE}};', ], ] ); $repeater->add_control( 'background_color', [ 'label' => __( 'Background Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}} .ee-hotspot__wrapper' => 'background-color: {{VALUE}};', '{{WRAPPER}} {{CURRENT_ITEM}} .ee-hotspot__wrapper:before' => 'background-color: {{VALUE}};', ], ] ); $repeater->add_responsive_control( 'opacity', [ 'label' => __( 'Opacity (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0, 'step' => 0.1, ], ], 'separator' => 'after', 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}}.ee-hotspot' => 'opacity: {{SIZE}};', ], ] ); $repeater->add_control( 'hover', [ 'label' => __( 'Hover', 'elementor-extras' ), 'type' => Controls_Manager::HEADING, ] ); $repeater->add_control( 'color_hover', [ 'label' => __( 'Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}}:hover .ee-hotspot__wrapper' => 'color: {{VALUE}};', ], ] ); $repeater->add_control( 'background_color_hover', [ 'label' => __( 'Background Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}}:hover .ee-hotspot__wrapper' => 'background-color: {{VALUE}};', '{{WRAPPER}} {{CURRENT_ITEM}}:hover .ee-hotspot__wrapper:before' => 'background-color: {{VALUE}};', ], ] ); $repeater->add_responsive_control( 'opacity_hover', [ 'label' => __( 'Opacity (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'max' => 1, 'min' => 0, 'step' => 0.1, ], ], 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}}.ee-hotspot:hover' => 'opacity: {{SIZE}};', ], ] ); $repeater->end_controls_tab(); $repeater->start_controls_tab( 'tab_position', [ 'label' => __( 'Position', 'elementor-extras' ) ] ); $repeater->add_control( '_position_horizontal', [ 'label' => __( 'Horizontal position (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 50, ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, 'step' => 0.1, ], ], 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}}' => 'left: {{SIZE}}%;', ], ] ); $repeater->add_control( '_position_vertical', [ 'label' => __( 'Vertical position (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 50, ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, 'step' => 0.1, ], ], 'selectors' => [ '{{WRAPPER}} {{CURRENT_ITEM}}' => 'top: {{SIZE}}%;', ], ] ); $repeater->add_control( 'tooltips_heading', [ 'label' => __( 'Tooltips', 'elementor-extras' ), 'type' => Controls_Manager::HEADING, ] ); $repeater->add_control( 'tooltip_position', [ 'label' => __( 'Show to', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'Global', 'elementor-extras' ), 'bottom' => __( 'Bottom', 'elementor-extras' ), 'left' => __( 'Left', 'elementor-extras' ), 'top' => __( 'Top', 'elementor-extras' ), 'right' => __( 'Right', 'elementor-extras' ), ], ] ); $repeater->add_control( 'tooltip_arrow_position_h', [ 'label' => __( 'Show at', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'Default', 'elementor-extras' ), 'center' => __( 'Center', 'elementor-extras' ), 'left' => __( 'Left', 'elementor-extras' ), 'right' => __( 'Right', 'elementor-extras' ), ], 'condition' => [ 'tooltip_position' => [ 'top', 'bottom' ], ], ] ); $repeater->add_control( 'tooltip_arrow_position_v', [ 'label' => __( 'Show at', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'Default', 'elementor-extras' ), 'center' => __( 'Center', 'elementor-extras' ), 'bottom' => __( 'Bottom', 'elementor-extras' ), 'top' => __( 'Top', 'elementor-extras' ), ], 'condition' => [ 'tooltip_position' => [ 'left', 'right' ], ], ] ); $repeater->end_controls_tab(); $repeater->end_controls_tabs(); $this->add_control( 'hotspots', [ 'label' => __( 'Hotspots', 'elementor-extras' ), 'type' => Controls_Manager::REPEATER, 'default' => [ [ 'text' => '1', ], [ 'text' => '2', ], ], 'fields' => $repeater->get_controls(), 'title_field' => '{{{ text }}}', 'condition' => [ 'image[url]!' => '', ] ] ); $this->end_controls_section(); $this->start_controls_section( 'section_tooltips', [ 'label' => __( 'Tooltips', 'elementor-extras' ), 'condition' => [ 'image[url]!' => '', ] ] ); $this->add_responsive_control( 'trigger', [ 'label' => __( 'Trigger', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => 'mouseenter', 'tablet_default' => 'click_target', 'mobile_default' => 'click_target', 'options' => [ 'mouseenter' => __( 'Mouse Over', 'elementor-extras' ), 'click_target' => __( 'Click Target', 'elementor-extras' ), 'load' => __( 'Page Load', 'elementor-extras' ), ], 'condition' => [ 'image[url]!' => '', ], 'frontend_available' => true ] ); $this->add_responsive_control( '_hide', [ 'label' => __( 'Hide on', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => 'mouseleave', 'tablet_default' => 'click_out', 'mobile_default' => 'click_out', 'options' => [ 'mouseleave' => __( 'Mouse Leave', 'elementor-extras' ), 'click_out' => __( 'Click Outside', 'elementor-extras' ), 'click_target' => __( 'Click Target', 'elementor-extras' ), 'click_any' => __( 'Click Anywhere', 'elementor-extras' ), ], 'condition' => [ 'image[url]!' => '', ], 'frontend_available' => true ] ); $this->add_control( 'position', [ 'label' => __( 'Show to', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => 'bottom', 'options' => [ 'bottom' => __( 'Bottom', 'elementor-extras' ), 'left' => __( 'Left', 'elementor-extras' ), 'top' => __( 'Top', 'elementor-extras' ), 'right' => __( 'Right', 'elementor-extras' ), ], 'condition' => [ 'image[url]!' => '', ], 'frontend_available' => true ] ); $this->add_control( 'arrow_position_h', [ 'label' => __( 'Show at', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => 'center', 'options' => [ 'center' => __( 'Center', 'elementor-extras' ), 'left' => __( 'Left', 'elementor-extras' ), 'right' => __( 'Right', 'elementor-extras' ), ], 'condition' => [ 'image[url]!' => '', 'position' => [ 'top', 'bottom' ], ], 'frontend_available' => true ] ); $this->add_control( 'arrow_position_v', [ 'label' => __( 'Show at', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ 'center' => __( 'Center', 'elementor-extras' ), 'top' => __( 'Top', 'elementor-extras' ), 'bottom' => __( 'Bottom', 'elementor-extras' ), ], 'condition' => [ 'image[url]!' => '', 'position' => [ 'left', 'right' ], ], 'frontend_available' => true ] ); $this->add_control( 'css_position', [ 'label' => __( 'CSS Position', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => 'Absolute', 'fixed' => 'Fixed', ], 'frontend_available' => true, ] ); $this->add_control( 'disable', [ 'label' => __( 'Disable On', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '', 'options' => [ '' => __( 'None', 'elementor-extras' ), 'tablet' => __( 'Tablet & Mobile', 'elementor-extras' ), 'mobile' => __( 'Mobile', 'elementor-extras' ), ], 'frontend_available' => true ] ); $this->add_control( 'arrow', [ 'label' => __( 'Arrow', 'elementor-extras' ), 'type' => Controls_Manager::SELECT, 'default' => '""', 'options' => [ '""' => __( 'Show', 'elementor-extras' ), 'none' => __( 'Hide', 'elementor-extras' ), ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}:after' => 'content: {{VALUE}};', ], 'condition' => [ 'image[url]!' => '', ] ] ); $this->add_control( 'delay_in', [ 'label' => __( 'Delay in (s)', 'elementor-extras' ), 'description' => __( 'Time until tooltips appear.', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 1, 'step' => 0.1, ], ], 'condition' => [ 'image[url]!' => '', ], 'frontend_available' => true ] ); $this->add_control( 'delay_out', [ 'label' => __( 'Delay out (s)', 'elementor-extras' ), 'description' => __( 'Time until tooltips dissapear.', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 1, 'step' => 0.1, ], ], 'condition' => [ 'image[url]!' => '', ], 'frontend_available' => true ] ); $this->add_control( 'duration', [ 'label' => __( 'Duration', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'range' => [ 'px' => [ 'min' => 0, 'max' => 2, 'step' => 0.1, ], ], 'frontend_available' => true ] ); $this->add_control( 'distance', [ 'label' => __( 'Distance', 'elementor-extras' ), 'description' => __( 'The distance between the tooltip and the hotspot. Defaults to 6px', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => '', ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 100, ], ], 'condition' => [ 'image[url]!' => '', ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}.to--top' => 'transform: translateY(-{{SIZE}}{{UNIT}});', '.ee-tooltip.ee-tooltip-{{ID}}.to--bottom' => 'transform: translateY({{SIZE}}{{UNIT}});', '.ee-tooltip.ee-tooltip-{{ID}}.to--left' => 'transform: translateX(-{{SIZE}}{{UNIT}});', '.ee-tooltip.ee-tooltip-{{ID}}.to--right' => 'transform: translateX({{SIZE}}{{UNIT}});', ] ] ); $this->add_control( 'offset', [ 'label' => __( 'Offset', 'elementor-extras' ), 'description' => __( 'Adjust offset to align arrow with target.', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 0, ], 'range' => [ 'px' => [ 'min' => -100, 'max' => 100, ], ], 'condition' => [ 'image[url]!' => '', ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}.to--top, .ee-tooltip.ee-tooltip-{{ID}}.to--bottom' => 'margin-left: {{SIZE}}{{UNIT}};', '.ee-tooltip.ee-tooltip-{{ID}}.to--left, .ee-tooltip.ee-tooltip-{{ID}}.to--right' => 'margin-top: {{SIZE}}{{UNIT}};', ] ] ); $this->add_responsive_control( 'width', [ 'label' => __( 'Maximum Width', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 200, ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 500, ], ], 'condition' => [ 'image[url]!' => '', ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}' => 'width: {{SIZE}}{{UNIT}};', ] ] ); $this->add_control( 'zindex', [ 'label' => __( 'zIndex', 'elementor-extras' ), 'description' => __( 'Adjust the z-index of the tooltips. Defaults to 999', 'elementor-extras' ), 'type' => Controls_Manager::NUMBER, 'default' => '999', 'min' => -9999999, 'step' => 1, 'condition' => [ 'image[url]!' => '', ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}' => 'z-index: {{SIZE}};', ] ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_image', [ 'label' => __( 'Image', 'elementor-extras' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'opacity', [ 'label' => __( 'Opacity (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .ee-hotspots img' => 'opacity: {{SIZE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'image_border', 'label' => __( 'Image Border', 'elementor-extras' ), 'selector' => '{{WRAPPER}} .ee-hotspots img', ] ); $this->add_control( 'image_border_radius', [ 'label' => __( 'Border Radius', 'elementor-extras' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '{{WRAPPER}} .ee-hotspots img' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'image_box_shadow', 'selector' => '{{WRAPPER}} .ee-hotspots img', 'separator' => '', ] ); $this->add_group_control( Group_Control_Css_Filter::get_type(), [ 'name' => 'image_css_filters', 'selector' => '{{WRAPPER}} .ee-hotspots img', ] ); $this->end_controls_section(); $this->start_controls_section( 'section_style_hotspots', [ 'label' => __( 'Hotspots', 'elementor-extras' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'hotspots_pulse', [ 'label' => __( 'Disable Pulse Effect', 'elementor-extras' ), 'type' => Controls_Manager::SWITCHER, 'default' => '', 'frontend_available' => 'true', ] ); $this->add_control( 'hotspots_padding', [ 'label' => __( 'Text Padding', 'elementor-extras' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot__wrapper' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], 'separator' => 'before', ] ); $this->add_control( 'hotspots_border_radius', [ 'label' => __( 'Border Radius', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 100, ], 'range' => [ 'px' => [ 'max' => 100, 'min' => 0, ], ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot__wrapper' => 'border-radius: {{SIZE}}px;', '{{WRAPPER}} .ee-hotspot__wrapper:before' => 'border-radius: {{SIZE}}px;', ], ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'hotspots_typography', 'selector' => '{{WRAPPER}} .ee-hotspot__wrapper', 'exclude' => ['line_height'], 'global' => [ 'default' => Global_Typography::TYPOGRAPHY_TEXT, ], 'separator' => 'before', ] ); $this->add_group_control( Group_Control_Transition::get_type(), [ 'name' => 'hotspots', 'selector' => '{{WRAPPER}} .ee-hotspot__wrapper, {{WRAPPER}} .ee-hotspot__wrapper:before', ] ); $this->start_controls_tabs( 'tabs_hotspots_style' ); $this->start_controls_tab( 'tab_hotspots_default', [ 'label' => __( 'Default', 'elementor-extras' ), ] ); $this->add_responsive_control( 'hotspots_opacity', [ 'label' => __( 'Opacity (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot' => 'opacity: {{SIZE}};', ], ] ); $this->add_responsive_control( 'hotspots_size', [ 'label' => __( 'Size', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 2, 'min' => 0.5, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot__wrapper' => 'transform: scale({{SIZE}})', ], ] ); $this->add_control( 'hotspots_color', [ 'label' => __( 'Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ee-hotspot__wrapper' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'hotspots_background_color', [ 'label' => __( 'Background Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'global' => [ 'default' => Global_Colors::COLOR_PRIMARY, ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot__wrapper' => 'background-color: {{VALUE}};', '{{WRAPPER}} .ee-hotspot__wrapper:before' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'hotspots_border', 'label' => __( 'Text Border', 'elementor-extras' ), 'selector' => '{{WRAPPER}} .ee-hotspot__wrapper', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'hotspots_box_shadow', 'selector' => '{{WRAPPER}} .ee-hotspot__wrapper', 'separator' => '' ] ); $this->end_controls_tab(); $this->start_controls_tab( 'tab_hotspots_hover', [ 'label' => __( 'Hover', 'elementor-extras' ), ] ); $this->add_responsive_control( 'hotspots_hover_opacity', [ 'label' => __( 'Opacity (%)', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 1, 'min' => 0.10, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper' => 'opacity: {{SIZE}};', ], ] ); $this->add_responsive_control( 'hotspots_hover_size', [ 'label' => __( 'Size', 'elementor-extras' ), 'type' => Controls_Manager::SLIDER, 'default' => [ 'size' => 1, ], 'range' => [ 'px' => [ 'max' => 2, 'min' => 0.5, 'step' => 0.01, ], ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper' => 'transform: scale({{SIZE}})', ], ] ); $this->add_control( 'hotspots_hover_color', [ 'label' => __( 'Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'default' => '', 'selectors' => [ '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper' => 'color: {{VALUE}};', ], ] ); $this->add_control( 'hotspots_hover_background_color', [ 'label' => __( 'Background Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'global' => [ 'default' => Global_Colors::COLOR_SECONDARY, ], 'selectors' => [ '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper' => 'background-color: {{VALUE}};', '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper:before' => 'background-color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'hotspots_hover_border', 'label' => __( 'Text Border', 'elementor-extras' ), 'selector' => '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'hotspot_shover_box_shadow', 'selector' => '{{WRAPPER}} .ee-hotspot:hover .ee-hotspot__wrapper', 'separator' => '' ] ); $this->end_controls_tab(); $this->end_controls_tabs(); $this->end_controls_section(); $this->start_controls_section( 'section_tooltips_style', [ 'label' => __( 'Tooltips', 'elementor-extras' ), 'tab' => Controls_Manager::TAB_STYLE, ] ); $this->add_control( 'tooltips_align', [ 'label' => __( 'Alignment', 'elementor-extras' ), 'type' => Controls_Manager::CHOOSE, 'options' => [ 'left' => [ 'title' => __( 'Left', 'elementor-extras' ), 'icon' => 'fa fa-align-left', ], 'center' => [ 'title' => __( 'Center', 'elementor-extras' ), 'icon' => 'fa fa-align-center', ], 'right' => [ 'title' => __( 'Right', 'elementor-extras' ), 'icon' => 'fa fa-align-right', ], ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}' => 'text-align: {{VALUE}};', ], ] ); $this->add_control( 'tooltips_padding', [ 'label' => __( 'Padding', 'elementor-extras' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', 'em', '%' ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'tooltips_border_radius', [ 'label' => __( 'Border Radius', 'elementor-extras' ), 'type' => Controls_Manager::DIMENSIONS, 'size_units' => [ 'px', '%' ], 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};', ], ] ); $this->add_control( 'tooltips_background_color', [ 'label' => __( 'Background Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'selectors' => ExtrasUtils::get_tooltip_background_selectors(), ] ); $this->add_control( 'tooltips_color', [ 'label' => __( 'Color', 'elementor-extras' ), 'type' => Controls_Manager::COLOR, 'selectors' => [ '.ee-tooltip.ee-tooltip-{{ID}}' => 'color: {{VALUE}};', ], ] ); $this->add_group_control( Group_Control_Border::get_type(), [ 'name' => 'tooltips_border', 'label' => __( 'Border', 'elementor-extras' ), 'selector' => '.ee-tooltip.ee-tooltip-{{ID}}', ] ); $this->add_group_control( Group_Control_Typography::get_type(), [ 'name' => 'tooltips_typography', 'selector' => '.ee-tooltip.ee-tooltip-{{ID}}', 'global' => [ 'default' => Global_Typography::TYPOGRAPHY_TEXT, ], 'separator' => '', ] ); $this->add_group_control( Group_Control_Box_Shadow::get_type(), [ 'name' => 'tooltips_box_shadow', 'selector' => '.ee-tooltip.ee-tooltip-{{ID}}', 'separator' => '', ] ); $this->end_controls_section(); } /** * Render * * Render widget contents on frontend * * @since 0.1.0 * @return void */ protected function render() { $settings = $this->get_settings_for_display(); if ( empty( $settings['image']['url'] ) ) return; $this->add_render_attribute( 'container', 'class', 'ee-hotspots__container' ); $this->add_render_attribute( 'wrapper', 'class', 'ee-hotspots' ); if ( '' !== $settings['hotspots_pulse'] ) { $this->add_render_attribute( 'wrapper', 'class', 'ee-hotspots--no-pulse' ); } ?>
get_render_attribute_string( 'wrapper' ); ?>>
get_render_attribute_string( 'container' ); ?>> $item ) { $has_icon = false; $hotspot_tag = 'div'; $hotspot_key = $this->get_repeater_setting_key( 'hotspot', 'hotspots', $index ); $wrapper_key = $this->get_repeater_setting_key( 'wrapper', 'hotspots', $index ); $icon_key = $this->get_repeater_setting_key( 'icon', 'hotspots', $index ); $icon_wrapper_key = $this->get_repeater_setting_key( 'icon-wrapper', 'hotspots', $index ); $text_key = $this->get_repeater_setting_key( 'text', 'hotspots', $index ); $tooltip_key = $this->get_repeater_setting_key( 'content', 'hotspots', $index ); $content_id = $this->get_id() . '_' . $item['_id']; $this->add_render_attribute( [ $wrapper_key => [ 'class' => 'ee-hotspot__wrapper', ], $text_key => [ 'class' => 'ee-hotspot__text', ], $tooltip_key => [ 'class' => 'hotip-content', 'id' => 'hotip-content-' . $content_id, ], $hotspot_key => [ 'class' => [ 'elementor-repeater-item-' . $item['_id'], 'hotip', 'ee-hotspot', ], 'data-hotips-content' => '#hotip-content-' . $content_id, 'data-hotips-position' => $item['tooltip_position'], 'data-hotips-arrow-position-h' => $item['tooltip_arrow_position_h'], 'data-hotips-arrow-position-v' => $item['tooltip_arrow_position_v'], 'data-hotips-class' => [ 'ee-global', 'ee-tooltip', 'ee-tooltip-' . $this->get_id(), ] ], ] ); if ( 'icon' === $item['hotspot'] && ( ! empty( $item['icon'] ) || ! empty( $item['selected_icon']['value'] ) ) ) { $migrated = isset( $item['__fa4_migrated']['selected_icon'] ); $is_new = empty( $item['icon'] ) && Icons_Manager::is_migration_allowed(); $has_icon = true; $this->add_render_attribute( $icon_wrapper_key, 'class', [ 'ee-hotspot__icon', 'ee-icon', 'ee-icon-support--svg', ] ); if ( ! empty( $item['icon'] ) ) { $this->add_render_attribute( $icon_key, [ 'class' => esc_attr( $item['icon'] ), 'aria-hidden' => 'true', ] ); } } if ( $item['_item_id'] ) { $this->add_render_attribute( $hotspot_key, 'id', $item['_item_id'] ); } if ( $item['css_classes'] ) { $this->add_render_attribute( $hotspot_key, 'class', $item['css_classes'] ); } if ( ! empty( trim( $item['link']['url'] ) ) ) { $hotspot_tag = 'a'; $this->add_render_attribute( $hotspot_key, 'href', $item['link']['url'] ); if ( $item['link']['is_external'] ) { $this->add_render_attribute( $hotspot_key, 'target', '_blank' ); } if ( ! empty( $item['link']['nofollow'] ) ) { $this->add_render_attribute( $hotspot_key, 'rel', 'nofollow' ); } } ?>< get_render_attribute_string( $hotspot_key ); ?>> get_render_attribute_string( $wrapper_key ); ?>> get_render_attribute_string( $text_key ); ?>>get_render_attribute_string( $icon_wrapper_key ); ?>> 'true' ] ); } else { ?>get_render_attribute_string( $icon_key ); ?>> >
get_render_attribute_string( $tooltip_key ); ?>> parse_text_editor( $item['content'] ); ?>
<# if ( '' !== settings.image.url ) { var image = { id: settings.image.id, url: settings.image.url, size: settings.image_size, dimension: settings.image_custom_dimension, model: view.getEditModel(), }, widgetId = view.$el.data('id'); currentItem = ( editSettings.activeItemIndex > 0 ) ? editSettings.activeItemIndex : false; view.addRenderAttribute( { 'wrapper' : { 'class' : 'ee-hotspots', }, 'container' : { 'class' : 'ee-hotspots__container', }, 'image' : { 'src' : elementor.imagesManager.getImageUrl( image ), } } ); if ( '' !== settings.hotspots_pulse ) { view.addRenderAttribute( 'wrapper', 'class', 'ee-hotspots--no-pulse' ); } #>
<# if ( settings.hotspots ) { #>
<# _.each( settings.hotspots, function( item, index ) { var has_icon = false, hotspotTag = 'div', hotspotKey = view.getRepeaterSettingKey( 'hotspot', 'hotspots', index ), wrapperKey = view.getRepeaterSettingKey( 'wrapper', 'hotspots', index ), iconWrapperKey = view.getRepeaterSettingKey( 'icon-wrapper', 'hotspots', index ), iconKey = view.getRepeaterSettingKey( 'icon', 'hotspots', index ), textKey = view.getRepeaterSettingKey( 'text', 'hotspots', index ), tooltipKey = view.getRepeaterSettingKey( 'content', 'hotspots', index ), contentId = widgetId + '_' + item._id; view.addRenderAttribute( wrapperKey, 'class', 'ee-hotspot__wrapper' ); view.addRenderAttribute( textKey, 'class', 'ee-hotspot__text' ); view.addRenderAttribute( tooltipKey, 'class', 'hotip-content' ); view.addRenderAttribute( tooltipKey, 'id', 'hotip-content-' + contentId ); view.addRenderAttribute( hotspotKey, { 'class' : [ 'elementor-repeater-item-' + item._id, 'hotip', 'ee-hotspot', ], 'data-hotips-content' : '#hotip-content-' + contentId, 'data-hotips-position' : item.tooltip_position, 'data-hotips-arrow-position-h' : item.tooltip_arrow_position_h, 'data-hotips-arrow-position-v' : item.tooltip_arrow_position_v, 'data-hotips-class' : [ 'ee-tooltip', 'ee-tooltip-' + widgetId, ], } ); if ( 'icon' === item.hotspot && ( item.icon || item.selected_icon ) ) { var iconHTML = elementor.helpers.renderIcon( view, item.selected_icon, { 'aria-hidden': true }, 'i' , 'object' ), migrated = elementor.helpers.isIconMigrated( item, 'selected_icon' ); has_icon = true; view.addRenderAttribute( iconWrapperKey, { 'class' : [ 'ee-hotspot__icon', 'ee-icon', 'ee-icon-support--svg', ], } ); if ( item.icon ) { view.addRenderAttribute( iconKey, { 'class' : item.icon, 'aria-hidden' : 'true', } ); } } else { view.addInlineEditingAttributes( textKey, 'none' ); } if ( item._item_id ) { view.addRenderAttribute( hotspotKey, 'id', item._item_id ); } if ( item.css_classes ) { view.addRenderAttribute( hotspotKey, 'class', item.css_classes ); } if ( '' !== item.link.url ) { hotspotTag = 'a'; view.addRenderAttribute( hotspotKey, 'href', item.link.url ); } #><{{ hotspotTag }} {{{ view.getRenderAttributeString( hotspotKey ) }}}> <# if ( has_icon ) { #><# if ( ( migrated || ! item.icon ) && iconHTML.rendered ) { #>{{{ iconHTML.value }}}<# } else { #><# } #><# } else { #>{{{ item.text }}}<# } #>
{{{ item.content }}}
<# }); #>
<# } #>
<# } #>