NoticeBar 通告栏

引入

app.jsonindex.json中引入组件,详细介绍见快速上手

  1. "usingComponents": {
  2. "van-notice-bar": "path/to/@vant/weapp/dist/notice-bar/index"
  3. }

代码演示

基础用法

  1. <van-notice-bar
  2. left-icon="https://img.yzcdn.cn/1.png"
  3. text="足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。"
  4. />

禁用滚动

文字内容多于一行时,可通过scrollable参数控制是否开启滚动

  1. <van-notice-bar
  2. scrollable="false"
  3. text="足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。"
  4. />

多行展示

禁用滚动时,可以设置wrapable来开启多行展示

  1. <van-notice-bar
  2. wrapable
  3. scrollable="false"
  4. text="足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。"
  5. />

使用左右插槽

使用left-icon插槽和right-icon插槽自定义左右固定内容

  1. <van-notice-bar text="足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。">
  2. <text slot="left-icon">[公告]</text>
  3. <text slot="right-icon">[结束]</text>
  4. </van-notice-bar>

通告栏模式

默认模式为空,支持closeablelink

  1. <!-- closeable 模式,在右侧显示关闭按钮 -->
  2. <van-notice-bar
  3. mode="closeable"
  4. text="足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。"
  5. />
  6. <!-- link 模式,在右侧显示链接箭头 -->
  7. <van-notice-bar
  8. mode="link"
  9. text="足协杯战线连续第2年上演广州德比战,上赛季半决赛上恒大以两回合5-3的总比分淘汰富力。"
  10. />

自定义滚动速率

使用speed属性控制滚动速率

  1. <van-notice-bar
  2. text="{{ text }}"
  3. speed="{{speedValue}}"
  4. left-icon="//img.yzcdn.cn/public_files/2017/8/10/6af5b7168eed548100d9041f07b7c616.png"
  5. />

API

Props

参数说明类型默认值版本
mode通告栏模式,可选值为 closeable linkstring''-
delay动画延迟时间 (s)number1-
speed滚动速率 (px/s)number50-
scrollable是否在长度溢出时滚动播放booleantrue-
left-icon左侧图标名称或图片链接,可选值见 Icon 组件string--
color文本颜色string#ed6a0c-
backgroundColor滚动条背景string#fffbe8-
open-type微信开放能力stringnavigate-

Events

事件名说明参数
bind:click点击事件回调-

Slot

名称说明
left-icon自定义左侧固定内容
right-icon自定义右侧固定内容

外部样式类

类名说明
custom-class根节点样式类

NoticeBar 通告栏 - 图1