# NoticeBar 通告栏 ### 引入 在`app.json`或`index.json`中引入组件,详细介绍见[快速上手](#/quickstart#yin-ru-zu-jian) ```json "usingComponents": { "van-notice-bar": "@vant/weapp/notice-bar/index" } ``` ## 代码演示 ### 基础用法 ```html ``` ### 禁用滚动 文字内容多于一行时,可通过`scrollable`参数控制是否开启滚动 ```html ``` ### 多行展示 禁用滚动时,可以设置`wrapable`来开启多行展示 ```html ``` ### 使用左右插槽 使用`left-icon`插槽和`right-icon`插槽自定义左右固定内容 ```html [公告] [结束] ``` ### 通告栏模式 默认模式为空,支持`closeable`和`link`。 ```html ``` ### 自定义滚动速率 使用`speed`属性控制滚动速率 ```html ``` ## API ### Props | 参数 | 说明 | 类型 | 默认值 | 版本 | | --- | --- | --- | --- | --- | | mode | 通告栏模式,可选值为 `closeable` `link` | _string_ | `''` | - | | delay | 动画延迟时间 (s) | _number_ | `1` | - | | speed | 滚动速率 (px/s) | _number_ | `50` | - | | scrollable | 是否在长度溢出时滚动播放 | _boolean_ | `true` | - | | left-icon | 左侧图标名称或图片链接,可选值见 [Icon 组件](#/icon) | _string_ | - | - | | color | 文本颜色 | _string_ | `#ed6a0c` | - | | backgroundColor | 滚动条背景 | _string_ | `#fffbe8` | - | | open-type | 微信开放能力 | _string_ | `navigate` | - | ### Events | 事件名 | 说明 | 参数 | | ---------- | ------------ | ---- | | bind:click | 点击事件回调 | - | ### Slot | 名称 | 说明 | | ---------- | ------------------ | | left-icon | 自定义左侧固定内容 | | right-icon | 自定义右侧固定内容 | ### 外部样式类 | 类名 | 说明 | | ------------ | ------------ | | custom-class | 根节点样式类 |