網(wǎng)站開發(fā)php還是java百度詞條
該組件用于滾動(dòng)通告場景,有多種模式可供選擇
#平臺差異說明
App(vue) | App(nvue) | H5 | 小程序 |
---|---|---|---|
√ | √ | √ | √ |
#基本使用
- 通過
text
參數(shù)設(shè)置需要滾動(dòng)的內(nèi)容
<template><view><u-notice-bar :text="text1"></u-notice-bar></view>
</template><script>export default {data() {return {text1: 'uView UI眾多組件覆蓋開發(fā)過程的各個(gè)需求,組件功能豐富,多端兼容。讓您快速集成,開箱即用'}}}
</script>
copy
#可關(guān)閉
通過mode
配置為closable
讓右側(cè)顯示關(guān)閉按鈕
<template><view><u-notice-bar :text="text1" mode="closable"></u-notice-bar></view>
</template><script>export default {data() {return {text1: 'uView UI眾多組件覆蓋開發(fā)過程的各個(gè)需求,組件功能豐富,多端兼容。讓您快速集成,開箱即用'}}}
</script>
copy
#配置滾動(dòng)速度和跳轉(zhuǎn)
speed
可配置橫向滾動(dòng)速度url
可配置跳轉(zhuǎn)
<template><view><u-notice-bar :text="text1" mode="closable" speed="250" url="/pages/componentsB/tag/tag"></u-notice-bar></view>
</template><script>export default {data() {return {text1: 'uView UI眾多組件覆蓋開發(fā)過程的各個(gè)需求,組件功能豐富,多端兼容。讓您快速集成,開箱即用'}}}
</script>