/*! For license information please see 6822.2b173a22.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["6822"],{39534:function(t,a,s){"use strict";s.r(a);var n=s("80681");let e=["innerHTML"];a.default={setup:()=>({html:""}),render:()=>((0,n.wg)(),(0,n.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Add specific text or patterns on the page as watermarks, which can be used to prevent information theft. Please upgrade vant
to >= v4.2.0 before using this component.
Register component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { Watermark } from 'vant';\n\nconst app = createApp();\napp.use(Watermark);\n
\nUse the content
prop to set the text of the watermark.
<van-watermark content="Vant" />\n
\nUse the image
prop to set the watermark image, and use opacity
prop to adjust the transparency of the watermark.
<van-watermark\n image="https://fastly.jsdelivr.net/npm/@vant/assets/vant-watermark.png"\n opacity="0.2"\n/>\n
\nUse gap-x
gap-y
prop to control the gap between watermark items.
<van-watermark\n image="https://fastly.jsdelivr.net/npm/@vant/assets/vant-watermark.png"\n :gap-x="30"\n :gap-y="10"\n opacity="0.2"\n/>\n
\nUse rotate
prop to control the rotate of watermark. The default value is -22
.
<van-watermark\n image="https://fastly.jsdelivr.net/npm/@vant/assets/vant-watermark.png"\n rotate="22"\n opacity="0.2"\n/>\n
\nUse the full-page
prop to control the display range of the watermark.
<van-watermark\n image="https://fastly.jsdelivr.net/npm/@vant/assets/vant-watermark.png"\n opacity="0.2"\n :full-page="true"\n/>\n
\nUse the content
slot to pass HTML as watermark. Only supports inline styles, and self-closing tags are not supported.
<van-watermark :width="150">\n <template #content>\n <div style="background: linear-gradient(45deg, #000 0, #000 50%, #fff 50%)">\n <p style="mix-blend-mode: difference; color: #fff">Vant watermark</p>\n </div>\n </template>\n</van-watermark>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
width | \nWatermark width | \nnumber | \n100 | \n
height | \nWatermark height | \nnumber | \n100 | \n
z-index | \nWatermark\'s z-index | \nnumber | string | \n100 | \n
content | \nText watermark content | \nstring | \n- | \n
image | \nImage watermark content. If content and image are passed at the same time, use the image watermark first | \nstring | \n- | \n
rotate | \nWatermark rotation angle | \nnumber | string | \n-22 | \n
full-page | \nWhether to display the watermark in full screen | \nboolean | \ntrue | \n
gap-x | \nHorizontal spacing between watermarks | \nnumber | \n0 | \n
gap-y | \nVertical spacing between watermarks | \nnumber | \n0 | \n
text-color | \nColor of text watermark | \nstring | \n#dcdee0 | \n
opacity | \nOpacity of watermark | \nnumber | string | \n- | \n
Attribute | \nDescription | \n
---|---|
content | \nContent of HTML watermark. Only supports inline styles, and self-closing tags are not supported. The priority is higher than content or image props | \n
The component exports the following type definitions:
\nimport type { WaterProps } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-watermark-z-index | \n100 | \nz-index of root element | \n