Skip to content

滚动通知 NoticeBar

滚动通知组件。

兼容性

  • 兼容:✅
  • 不兼容:❌
  • 未知:❔
H5安卓苹果微信支付宝百度抖音QQ快手飞书京东
小红书鸿蒙360华为快应用快应用联盟

插件市场地址

DCloud 插件市场地址

基础使用

  • 通过 list 属性设置列表数据。
  • 通过 keyName 属性设置要显示的字段。
  • 通过 current 属性设置默认显示的索引。
vue
<template>
    <pure-notice-bar :list="list" :current="current"></pure-notice-bar>
</template>

<script setup>
    import { ref } from "vue";
    import { onReady } from "@dcloudio/uni-app";

    // 通知列表
    const list = ref([]);

    // 默认下标
    const current = ref(0);

    // 初始化数据
    onReady(() => {
        initList();
    });

    // 初始化列表
    function initList() {
        const _list = [
            { id: 1, text: "君不见,黄河之水天上来,奔流到海不复回。" },
            { id: 2, text: "君不见,高堂明镜悲白发,朝如青丝暮成雪。" },
            { id: 3, text: "人生得意须尽欢,莫使金樽空对月。" },
            { id: 4, text: "天生我材必有用,千金散尽还复来。" },
            { id: 5, text: "烹羊宰牛且为乐,会须一饮三百杯。" },
            { id: 6, text: "岑夫子,丹丘生,将进酒,杯莫停。" },
            { id: 7, text: "与君歌一曲,请君为我倾耳听。" },
            { id: 8, text: "钟鼓馔玉不足贵,但愿长醉不愿醒。" },
            { id: 9, text: "古来圣贤皆寂寞,惟有饮者留其名。" },
            { id: 10, text: "陈王昔时宴平乐,斗酒十千恣欢谑。" },
            { id: 11, text: "主人何为言少钱,径须沽取对君酌。" },
            { id: 12, text: "五花马,千金裘,呼儿将出换美酒,与尔同销万古愁。五花马,千金裘,呼儿将出换美酒,与尔同销万古愁。" },
        ];
        setTimeout(() => {
            list.value = _list;
        }, 1000);
    }
</script>

纵向模式

  • 通过 vertical 属性设置纵向模式。
vue
<template>
    <pure-notice-bar :list="list" :current="current" vertical></pure-notice-bar>
</template>

停靠一下

  • 默认情况下,通知会直接滚动直至消失,通过设置 dock 属性可以让通知滚动到左侧或顶部后停留一下,再继续滚动到消失。
  • 通过 dockTime 属性可以设置停留时间,接受两种值: always: 设置成 always 后,通知会一直停留。 number: 设置成数字后,会停留对应毫秒数。

提示

由于纵向模式使用 swiper 实现的,在某些平台将 swiperinterval 会导致 swiper 异常,所以在某些平台即使不设置 dock 也会停留一小下。

vue
<template>
    <pure-notice-bar :list="list" :current="current" dock></pure-notice-bar>
    <!-- 一直停留,适用于一条数据时 -->
    <pure-notice-bar :list="list" :current="current" dock dockTime="always"></pure-notice-bar>
</template>

显示行数

  • 给组件添加对应的辅助类名。

提示

显示超过一行时,组件自动计算了一个高度,可以自行在样式中修改。

vue
<template>
    <!-- pure-notice-bar-line-${1-10}: 显示的行数,最大10行 -->
    <pure-notice-bar :list="list" dock class="pure-notice-bar-line-1"></pure-notice-bar>
</template>

顶部对齐

  • 给组件添加对应的辅助类名。
  • 组件默认是垂直居中对齐的。
  • 在显示行数超过一行时,你可能会用到顶部对齐。
vue
<template>
    <pure-notice-bar :list="list" dock class="pure-notice-bar-line-2 pure-notice-bar-align-top"></pure-notice-bar>
</template>

Props

属性名说明类型默认值可选值版本
hoverClass右侧按钮和通知 itemhover-calssviewhover-classString"pure-hover"-+1.0.0
list列表数据Array[]-+1.0.0
current默认下标Number0-+1.0.0
keyName中显示字段的字段名Stringtext-+1.0.0
show是否显示Booleantruefalse+1.0.0
leftIcon左侧图标名称,同图标组件(Icon)的 name 属性,参考String__gonggao-+1.0.0
rightIcon右侧图标名称,同图标组件(Icon)的 name 属性,参考String--+1.0.0
speed移动速度,每秒移动的 px 值,只在横向模式时生效[Number, String]100-+1.0.0
duration滚动时长,毫秒,只在纵向模式时生效[Number, String]1000true+1.0.0
vertical是否纵向/垂直模式Booleanfalsetrue+1.0.0
dock是否在左侧/顶部停靠一下Booleanfalsetrue+1.0.0
dockTime停靠时长,毫秒[Number, String]3000always+1.0.0

Event

事件名说明回调参数版本
itemClick通知点击事件item: 通知数据; index: 数据下标;+1.0.0
iconClick右侧图标点击事件-+1.0.0

Slots

名称说明参数版本
left左侧内容-+1.0.0
right右侧内容-+1.0.0

基于 MIT 许可发布