Elementor 开发者文档

title: "滑块控件" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Editor Controls - Src - Repos


滑块控件

Slider Control

Elementor 滑块控件显示一个可拖动的范围滑块。该控件可选择性地包含多种单位类型 (size_units) 供用户选择。控件还接受一个 range 参数,允许您为每种单位类型设置 minmaxstep 值。

Slider Control

此控件在继承 Control_Base_Units 类的 Control_Slider 类中定义。

使用此控件时,应将 type 设置为 \Elementor\Controls_Manager::SLIDER 常量。

参数

名称 类型 默认值 描述
type string slider 控件的类型。
label string 显示在字段上方的标签。
description string 显示在字段下方的描述。
show_label bool true 是否显示标签。
label_block bool true 是否在单独一行显示标签。
separator string default 设置控件分隔符的位置。可用值为 defaultbeforeafterdefault 将隐藏分隔符,除非控件类型有特定的分隔符设置。before / after 会将分隔符定位在控件之前/之后。
size_units array [ 'px' ] 可用 CSS 单位的数组,例如 pxemrem%degvhcustom
range array 每个注册尺寸的范围数组。
  • $min (int) 范围的最小值。
  • $max (int) 范围的最大值。
  • $step (int) 使用控件微调器时递增或递减的间隔值。
default array 滑块默认值。
  • $unit (string) 滑块的初始单位。
  • $size (int) 滑块的初始尺寸。

返回值

[
    'unit' => '',
    'size' => '',
]

(array) 一个包含尺寸值的数组:

用法

```php {14-39,48-50,56-58}

start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'textdomain' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_control( 'width', [ 'label' => esc_html__( 'Width', 'textdomain' ), 'type' => \Elementor\Controls_Manager::SLIDER, 'size_units' => [ 'px', '%', 'em', 'rem', 'custom' ], 'range' => [ 'px' => [ 'min' => 0, 'max' => 1000, 'step' => 5, ], '%' => [ 'min' => 0, 'max' => 100, ], ], 'default' => [ 'unit' => '%', 'size' => 50, ], 'selectors' => [ '{{WRAPPER}} .your-class' => 'width: {{SIZE}}{{UNIT}};', ], ] ); $this->end_controls_section(); } protected function render(): void { $settings = $this->get_settings_for_display(); ?>
    <div class="your-class">
        ...
    </div>
    <?php
}

protected function content_template(): void {
    ?>
    <div class="your-class">
        ...
    </div>
    <?php
}

} ```