# 通知栏
# 平台差异
App | H5 | 微信小程序 | 支付宝小程序 | 头条小程序 |
---|---|---|---|---|
√ | √ | √ | √ | √ |
# Props
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
text | 文本内容 | string / array | ||
direction | 方向 | string | horizontal / vertical | horizontal |
color | 姿态颜色 | string | #444444 | |
background-color | 背景颜色 | string | #ffffff | |
scrollable | 能否滑动 | boolean | false | |
closeable | 能否关闭 | boolean | false | |
icon | 左侧图标类名 | string | ||
duration | 滑动时长(秒) | number | 6 |
# 示例
基本用法
<!-- 基本用法 -->
<cl-noticebar text="云想衣裳花想容,春风拂槛露华浓。"></cl-noticebar>
可滑动
<cl-noticebar text="云想衣裳花想容,春风拂槛露华浓。" scrollable></cl-noticebar>
不同方向
<cl-noticebar text="云想衣裳花想容,春风拂槛露华浓。" direction="vertical"></cl-noticebar>