## 轮播图标签
>[success] 读取数据表: easy\_cms\_block ( easy\_ 为自定义的表前缀 )
```
默认读取 images 字段,存储类型为JSON
```
\-
## 标签基本使用方法
```
{cms:switch id='1' /}
```
-
## 属性说明
```
id : 表自增ID值
model:查询的表名 默认:block
field:指定查询的字段 默认:images
key :返回数据主键变量名称 默认:'i'
mod : 以数据主键 key='i' 求余,默认: '2' 。 ( 当 $mod 为零时,你可以做一些其他的处理)
styleid :轮播图的样式 默认: 1 (样式模板存放路径:/addons/cms/web_switch/)
width :轮播图宽度 默认:100%
height :轮播图高度 默认:400px
switchid :轮播图对象ID 默认:switchid_1
but_color:轮播图按钮颜色 默认:#ffffff
but_color_focus:轮播图按钮颜色 默认:#1278f6
target : 打开窗口的方式 默认:_self 可选参数: ( _blank | _parent | _top )
```
-
## 举例
需求说明:首页轮播图:样式=1、宽度=1000px、高度=500px、轮播图对象ID=switchid\_home
```
{cms:switch id='1' styleid='1' width='1000px' height='500px' switchid='switchid_home' /}
```