title: "盒阴影分组控件" post_status: publish comment_status: open taxonomy: category: - elementor-developers-docs post_tag: - Editor Controls - Src - Repos
盒阴影分组控件
Elementor 盒阴影分组控件显示用于定义盒阴影的输入字段,包括水平阴影、垂直阴影、阴影模糊、阴影扩散、阴影颜色和阴影位置。
该控件在继承 Group_Control_Base 类的 Group_Control_Box_Shadow 类中定义。
使用此分组控件时,应将 type 设置为 Group_Control_Box_Shadow::get_type() 方法。
参数
| 名称 | 类型 | 默认值 | 描述 |
|---|---|---|---|
type |
string |
box-shadow | 控件的类型。 |
separator |
string |
default | 设置控件分隔符的位置。可用值为 default、before 和 after。default 将隐藏分隔符,除非控件类型有特定的分隔符设置。before / after 会将分隔符定位在控件之前/之后。 |
exclude |
array |
从分组控件中排除某些控件。例如:['box_shadow_position'] |
返回值
(array) 包含盒阴影值的数组。
用法
```php {14-20,29-31,37-39}
start_controls_section( 'content_section', [ 'label' => esc_html__( 'Content', 'textdomain' ), 'tab' => \Elementor\Controls_Manager::TAB_CONTENT, ] ); $this->add_group_control( \Elementor\Group_Control_Box_Shadow::get_type(), [ 'name' => 'box_shadow', 'selector' => '{{WRAPPER}} .your-class', ] ); $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
}
} ```