You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

#uniapp水印组件
原理
循环标签
作者
`zmm2113@qq.com`
版本
> 兼容性支持安卓、苹果、H5、微信小程序其他平台未测试理论上支持
优势
> 支持富文本、自动计算所需水印数量不卡顿、自定义旋转角度等
注意事项
> 因为层级原因需要将组件需要放置到顶部
一、使用示例
```
<template>
<view class="container">
<zmm-watermark :watermark="watermark"></zmm-watermark>
</view>
</template>
<script>
import img from '@/static/logo.png';
export default {
data() {
return {
watermark: '<h5>我是h5标签我是h5标签我是h5标签我是h5标签</h5><p style="color:#f00">我是p标签</p><br><img style="width:30px" src="' + img + '" />'
}
}
}
</script>
```
二、配置(注意配置数据类型)
配置|数据类型|默认参数|说明
-|-|-|-
watermark|String|"水印文字"|水印文字(支持html富文本)
color|String|"#000000"|水印文字默认颜色
fontSize|Number|16|水印文字大小
opacity|Number|0.15|水印透明度
margin|Number|20|水印之间上下间距
rotate|Number|-21|水印旋转角度
column|Number|3|水印列数