更新记录
1.0.0(2023-05-03)
下载此版本
完成
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue app-nvue |
√ |
√ |
√ |
√ |
√ |
√ |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
√ |
√ |
√ |
√ |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
√ |
依赖yll1024335892-ayi-icon组件
参数
参数 |
说明 |
类型 |
可选值 |
默认值 |
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 |
|
10 |
示例
基础用法
<ayi-noticebar text="阿翼UI"></ayi-noticebar>
带图标
<ayi-noticebar icon="ayi-icon-notification" text="阿翼UI"></ayi-noticebar>
可关闭
<ayi-noticebar text="阿翼UI" closeable></ayi-noticebar>
向左自动
<ayi-noticebar text="阿翼UI" scrollable></ayi-noticebar>
不同方向
text 需为数组
<ayi-noticebar :text="['阿翼UI','无语','所向披靡']" direction="vertical" scrollable :duration="3"></ayi-noticebar>