支付宝小程序 UI·页面水印
2020-09-07 17:37 更新
在小程序页面添加自定义水印。使用水印组件 <water-mark>
时,该组件需与被加上水印的模块对应的 <view>
保持同级。
扫码体验
前提条件
使用水印的前提条件如下:
获取模板代码
下载 水印 Demo.zip 文件,并解压至本地。
页面使用
page.axml
<water-mark fillText="侵权必究" />
参数说明
字段名 | 简介 | 类型 | 默认值 |
---|---|---|---|
fillText | 水印内容 | String | 侵权必究 |
示例代码
index.axml
<canvas id="canvas" width="610" height="610" class="water-canvas" />
index.acss
.water-canvas {
position: fixed;
top:0;
left: 0;
width: 100vw;
height: 100vh;
background-color: transparent;
}
/* 控制button组件可以在水印上点击 */
button{
position: relative;
}
index.js
Component({
props: {
fillText: '侵权必究' // 水印文本,默认值
},
didMount() {
this.ctx = my.createCanvasContext('canvas');
this.drawWater();
},
didUpdate() {
this.drawWater();
},
methods: {
/**
* @name drawWater
* @description 填充水印
*/
drawWater() {
const { fillText } = this.props;
this.ctx.rotate(18 * Math.PI / 180);// 设置文字的旋转角度,角度为30°
// 对斜对角线以左部分进行文字的填充
for (let j = 1; j < 10; j++) { // 用for循环达到重复输出文字的效果,这个for循环代表纵向循环
this.fill(fillText, 0, 90 * j);
for (let i = 1; i < 10; i++) { // 这个for循环代表横向循环,
this.fill(fillText, 130 * i, 80 * j);
}
}// 两个for循环的配合,使得文字充满斜对角线的左下部分
// 对斜对角线以右部分进行文字的填充逻辑同上
for (let j = 0; j < 10; j++) {
this.fill(fillText, 0, -80 * j);
for (let i = 1; i < 10; i++) {
this.fill(fillText, 130 * i, -80 * j);
}
}
this.ctx.draw();
},
/**
* @name fill
* @description 绘画水印
*/
fill(text, x, y){
this.ctx.beginPath();
this.ctx.setFontSize(20);
this.ctx.setFillStyle('rgba(169,169,169,.2)');
this.ctx.fillText(text, x, y);
}
}
});
index.json
{
"component": true
}
以上内容是否对您有帮助:
更多建议: