<?php
pxl_add_custom_widget(
array(
'name' => 'pxl_image',
'title' => esc_html__('Case Image', 'agenzio' ),
'icon' => 'eicon-image',
'categories' => array('pxltheme-core'),
'scripts' => array(
'tilt',
'pxl-tweenmax',
),
'params' => array(
'sections' => array(
array(
'name' => 'tab_content',
'label' => esc_html__('Content', 'agenzio' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
'controls' => array(
array(
'name' => 'source_type',
'label' => esc_html__('Source Type', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
's_img' => 'Select Image',
'f_img' => 'Featured Image',
],
'default' => 's_img',
),
array(
'name' => 'image',
'label' => esc_html__('Choose Image', 'agenzio' ),
'type' => \Elementor\Controls_Manager::MEDIA,
'condition' => [
'source_type' => ['s_img'],
],
),
array(
'name' => 'image_link',
'label' => esc_html__('Link', 'agenzio' ),
'type' => \Elementor\Controls_Manager::URL,
),
array(
'name' => 'image_type',
'label' => esc_html__('Image Type', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'img' => 'Image',
'bg' => 'Background',
],
'default' => 'img',
),
array(
'name' => 'img_size',
'label' => esc_html__('Image Size', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'description' => 'Enter image size (Example: "thumbnail", "medium", "large", "full" or other sizes defined by theme). Alternatively enter size in pixels (Example: 200x100 (Width x Height).',
'condition' => [
'image_type' => ['img'],
],
),
array(
'name' => 'image_align',
'label' => esc_html__('Image Alignment', 'agenzio' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'control_type' => 'responsive',
'options' => [
'left' => [
'title' => esc_html__('Left', 'agenzio' ),
'icon' => 'fa fa-align-left',
],
'center' => [
'title' => esc_html__('Center', 'agenzio' ),
'icon' => 'fa fa-align-center',
],
'right' => [
'title' => esc_html__('Right', 'agenzio' ),
'icon' => 'fa fa-align-right',
],
],
'selectors' => [
'{{WRAPPER}} .pxl-image-single' => 'text-align: {{VALUE}};',
],
),
),
),
array(
'name' => 'tab_style_img',
'label' => esc_html__('Image', 'agenzio' ),
'tab' => \Elementor\Controls_Manager::TAB_STYLE,
'controls' => array(
array(
'name' => 'style_img',
'label' => esc_html__('Style Image', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'style_img1' => 'Style Image1',
'style_img2' => 'Style Image2',
'style_img3' => 'Style Image3',
],
'default' => 'style_img1',
),
array(
'name' => 'image_max_height',
'label' => esc_html__('Image Max Height', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'description' => esc_html__('Enter number.', 'agenzio' ),
'condition' => [
'image_type' => 'img',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}} .pxl-image-single img' => 'max-height: {{SIZE}}{{UNIT}};',
],
'condition' => [
'image_type' => 'img',
],
),
array(
'name' => 'image_width',
'label' => esc_html__('Image Width', 'agenzio' ),
'type' => \Elementor\Controls_Manager::CHOOSE,
'options' => [
'auto' => [
'title' => esc_html__( 'Auto', 'agenzio' ),
'icon' => 'fas fa-arrows-alt-v',
],
'100%' => [
'title' => esc_html__( 'Full', 'agenzio' ),
'icon' => 'fas fa-arrows-alt-h',
],
],
'selectors' => [
'{{WRAPPER}} .pxl-image-single img' => 'width: {{VALUE}};',
],
'condition' => [
'image_type' => 'img',
],
'control_type' => 'responsive',
),
array(
'name' => 'image_height',
'label' => esc_html__('Image Height', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'description' => esc_html__('Enter number.', 'agenzio' ),
'condition' => [
'image_type' => 'bg',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}} .pxl-image-single .pxl-item--inner' => 'height: {{SIZE}}{{UNIT}};',
],
),
array(
'name' => 'image_opacity',
'label' => esc_html__('Image Opacity', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'condition' => [
'image_type' => 'img',
],
'range' => [
'px' => [
'min' => 0,
'max' => 3000,
],
],
'control_type' => 'responsive',
'selectors' => [
'{{WRAPPER}} .pxl-image-single img' => 'opacity: {{SIZE}};',
],
),
array(
'name' => 'border_radius',
'label' => esc_html__('Border Radius', 'agenzio' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'size_units' => [ 'px' ],
'selectors' => [
'{{WRAPPER}} .pxl-image-single img, {{WRAPPER}} .pxl-item--inner' => 'border-radius: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
],
),
array(
'name' => 'border_type',
'label' => esc_html__( 'Border Type', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'' => esc_html__( 'None', 'agenzio' ),
'solid' => esc_html__( 'Solid', 'agenzio' ),
'double' => esc_html__( 'Double', 'agenzio' ),
'dotted' => esc_html__( 'Dotted', 'agenzio' ),
'dashed' => esc_html__( 'Dashed', 'agenzio' ),
'groove' => esc_html__( 'Groove', 'agenzio' ),
],
'selectors' => [
'{{WRAPPER}} .pxl-image-single img' => 'border-style: {{VALUE}} !important;',
],
),
array(
'name' => 'border_width',
'label' => esc_html__( 'Border Width', 'agenzio' ),
'type' => \Elementor\Controls_Manager::DIMENSIONS,
'selectors' => [
'{{WRAPPER}} .pxl-image-single img' => 'border-width: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
],
'condition' => [
'border_type!' => '',
],
'responsive' => true,
),
array(
'name' => 'border_color',
'label' => esc_html__( 'Border Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'default' => '',
'selectors' => [
'{{WRAPPER}} .pxl-image-single img' => 'border-color: {{VALUE}} !important;',
],
'condition' => [
'border_type!' => '',
],
),
array(
'name' => 'box_shadow',
'label' => esc_html__( 'Box Shadow', 'agenzio' ),
'type' => \Elementor\Group_Control_Box_Shadow::get_type(),
'control_type' => 'group',
'selector' => '{{WRAPPER}} .pxl-image-single img'
),
array(
'name' => 'img_effect',
'label' => esc_html__('Image Effect', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'' => 'None',
'pxl-image-effect1' => 'Zigzag',
'pxl-image-tilt' => 'Tilt',
'pxl-image-spin' => 'Spin',
'pxl-image-zoom' => 'Zoom 1',
'pxl-image-zoom2' => 'Zoom 2',
'pxl-image-bounce' => 'Bounce',
'slide-up-down' => 'Slide Up Down',
'slide-top-to-bottom' => 'Slide Top To Bottom ',
'pxl-image-effect2' => 'Slide Bottom To Top ',
'slide-right-to-left' => 'Slide Right To Left ',
'slide-left-to-right' => 'Slide Left To Right ',
'pxl-hover1' => 'ZoomIn',
'pxl-hover2' => 'ZoomOut',
'pxl-animation-round' => 'Round',
'pxl-image-parallax' => 'Parallax Hover',
'pxl-parallax-scroll' => 'Parallax Scroll',
],
'default' => '',
'condition' => [
'image_type' => 'img',
],
),
array(
'name' => 'parallax_scroll_type',
'label' => esc_html__('Parallax Scroll Type', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SELECT,
'options' => [
'y' => 'Effect Y',
'x' => 'Effect X',
'z' => 'Effect Z',
],
'default' => 'y',
'condition' => [
'img_effect' => 'pxl-parallax-scroll',
],
),
array(
'name' => 'parallax_scroll_value_x',
'label' => esc_html__('Parallax Value', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'img_effect' => 'pxl-parallax-scroll',
],
'default' => '80',
'description' => esc_html__('Enter number.', 'agenzio' ),
),
array(
'name' => 'parallax_value',
'label' => esc_html__('Parallax Value', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'img_effect' => 'pxl-image-parallax',
],
'default' => '40',
'description' => esc_html__('Enter number.', 'agenzio' ),
),
array(
'name' => 'max_tilt',
'label' => esc_html__('Max Tilt', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'img_effect' => 'pxl-image-tilt',
],
'default' => '10',
'description' => esc_html__('Enter number.', 'agenzio' ),
),
array(
'name' => 'speed_tilt',
'label' => esc_html__('Speed Tilt', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'img_effect' => 'pxl-image-tilt',
],
'default' => '400',
'description' => esc_html__('Enter number.', 'agenzio' ),
),
array(
'name' => 'perspective_tilt',
'label' => esc_html__('Perspective Tilt', 'agenzio' ),
'type' => \Elementor\Controls_Manager::TEXT,
'condition' => [
'img_effect' => 'pxl-image-tilt',
],
'default' => '1000',
'description' => esc_html__('Enter number.', 'agenzio' ),
),
array(
'name' => 'speed_effect',
'label' => esc_html__('Speed', 'agenzio' ),
'type' => \Elementor\Controls_Manager::SLIDER,
'control_type' => 'responsive',
'size_units' => [ 'px' ],
'range' => [
'px' => [
'min' => 0,
'max' => 100000,
],
],
'selectors' => [
'{{WRAPPER}} .pxl-image-single, {{WRAPPER}} .pxl-image-single img' => 'animation-duration: {{SIZE}}ms;',
],
'condition' => [
'img_effect!' => ['pxl-image-tilt','pxl-hover1','pxl-parallax-scroll'],
],
'description' => 'Enter number, unit is ms.',
),
array(
'name' => 'img_display',
'label' => esc_html__('Hide on Screen <= 1400px', 'agenzio'),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'false',
),
array(
'name' => 'hide_parallax_sm',
'label' => esc_html__('Disable Parallax on Mobile <= 767px', 'agenzio'),
'type' => \Elementor\Controls_Manager::SWITCHER,
'default' => 'false',
'condition' => [
'img_effect' => ['pxl-parallax-scroll'],
],
),
array(
'name' => 'overlay_color',
'label' => esc_html__('Overlay Color', 'agenzio' ),
'type' => \Elementor\Controls_Manager::COLOR,
'selectors' => [
'{{WRAPPER}} .pxl-image-single .pxl-overlay-color' => 'background-color: {{VALUE}};',
],
),
),
),
agenzio_widget_animation_settings(),
),
),
),
agenzio_get_class_widget_path()
); Back to Directory