/*! For license information please see 5770.c86e2a39.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["5770"],{12398:function(s,n,t){"use strict";t.r(n);var a=t("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Used to display a group of message notifications in a continuons loop.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { NoticeBar } from 'vant';\n\nconst app = createApp();\napp.use(NoticeBar);\n
\n<van-notice-bar\n text="Technology is the common soul of the people who developed it."\n left-icon="volume-o"\n/>\n
\n<!-- Enable scroll when text is short -->\n<van-notice-bar scrollable text="Short Content" />\n\n<!-- Disable scroll when text is long -->\n<van-notice-bar\n :scrollable="false"\n text="Technology is the common soul of the people who developed it."\n/>\n
\n<van-notice-bar wrapable :scrollable="false">\n Technology is the common soul of the people who developed it.\n</van-notice-bar>\n
\n<van-notice-bar mode="closeable">Short Content</van-notice-bar>\n\n<van-notice-bar mode="link">Short Content</van-notice-bar>\n
\n<van-notice-bar color="#1989fa" background="#ecf9ff" left-icon="info-o">\n Short Content\n</van-notice-bar>\n
\n<van-notice-bar left-icon="volume-o" :scrollable="false">\n <van-swipe\n vertical\n class="notice-swipe"\n :autoplay="3000"\n :touchable="false"\n :show-indicators="false"\n >\n <van-swipe-item>Content 1</van-swipe-item>\n <van-swipe-item>Content 2</van-swipe-item>\n <van-swipe-item>Content 3</van-swipe-item>\n </van-swipe>\n</van-notice-bar>\n\n<style>\n .notice-swipe {\n height: 40px;\n line-height: 40px;\n }\n</style>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
mode | \nMode, can be set to closeable link | \nstring | \n\'\' | \n
text | \nNotice text content | \nstring | \n\'\' | \n
color | \nText color | \nstring | \n#ed6a0c | \n
background | \nBackground color | \nstring | \n#fffbe8 | \n
left-icon | \nLeft Icon | \nstring | \n- | \n
delay | \nAnimation delay (s) | \nnumber | string | \n1 | \n
speed | \nScroll speed (px/s) | \nnumber | string | \n60 | \n
scrollable | \nWhether to scroll content | \nboolean | \n- | \n
wrapable | \nWhether to enable text wrap | \nboolean | \nfalse | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when NoticeBar is clicked | \nevent: MouseEvent | \n
close | \nEmitted when NoticeBar is closed | \nevent: MouseEvent | \n
replay | \nEmitted when NoticeBar is replayed | \n- | \n
Use ref to get NoticeBar instance and call instance methods.
\nName | \nDescription | \nAttribute | \nReturn value | \n
---|---|---|---|
reset | \nReset NoticeBar | \n- | \n- | \n
The component exports the following type definitions:
\nimport type { NoticeBarMode, NoticeBarProps, NoticeBarInstance } from 'vant';\n
\nNoticeBarInstance
is the type of component instance:
import { ref } from 'vue';\nimport type { NoticeBarInstance } from 'vant';\n\nconst noticeBarRef = ref<NoticeBarInstance>();\n\nnoticeBarRef.value?.reset();\n
\nName | \nDescription | \n
---|---|
default | \nNotice text content | \n
left-icon | \nCustom left icon | \n
right-icon | \nCustom right icon | \n
The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-notice-bar-height | \n40px | \n- | \n
--van-notice-bar-padding | \n0 var(--van-padding-md) | \n- | \n
--van-notice-bar-wrapable-padding | \nvar(--van-padding-xs) var(--van-padding-md) | \n- | \n
--van-notice-bar-text-color | \nvar(--van-orange-dark) | \n- | \n
--van-notice-bar-font-size | \nvar(--van-font-size-md) | \n- | \n
--van-notice-bar-line-height | \n24px | \n- | \n
--van-notice-bar-background | \nvar(--van-orange-light) | \n- | \n
--van-notice-bar-icon-size | \n16px | \n- | \n
--van-notice-bar-icon-min-width | \n24px | \n- | \n