微信小程序 界面水印实现
2022/5/11 12:53:57
本文主要是介绍微信小程序 界面水印实现,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
效果图
index
log
创建 Component
watermark.wxml
<view class="water_top" style="pointer-events: none;"> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> <view class="water-text">{{watermarkText}}</view> </view>
watermark.wxss
.water_top{ position: fixed; top:0; bottom: 0; left: 0; right: 0; transform:rotate(-12deg); /** 旋转 可自己调整 **/ z-index: 9999; } .water-text{ float: left; width:375rpx; color: rgba(169,169,169,.2); text-align: center; font-size: 95%; margin: 100rpx 0; /** 间距 可自调 **/ }
watermark.js
// components/watermark/watermark.js Component({ /** * 组件的属性列表 */ properties: { name:String }, /** * 组件的初始数据 */ data: { watermarkText:'闽达钢铁' }, /** * 组件生命周期声明对象,组件的生命周期 * :created、attached、ready、moved、detached * 将收归到 lifetimes 字段内进行声明 * 原有声明方式仍旧有效,如同时存在两种声明方式 * 则 lifetimes 字段内声明方式优先级最高 */ lifetimes:{ attached(){ this.setData({ watermarkText:this.data.watermarkText + this.properties.name }) } }, /** * 组件的方法列表 */ methods: { } })
app.json 全局引用
{ "pages":[ "pages/index/index", "pages/logs/logs" ], "window":{ "backgroundTextStyle":"light", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "Weixin", "navigationBarTextStyle":"black" }, "style": "v2", "sitemapLocation": "sitemap.json", /* 引入 tips:删除引入注释 放入代码会报错 */ "usingComponents": { "watermark":"/components/watermark/watermark" } }
界面使用组件 index.wxml
<!-- 放入顶部即可 --> <watermark name="班长"></watermark>
log.wxml
<!--logs.wxml--> <watermark name="张大梅"></watermark> <view class="container log-list"> <block wx:for="{{logs}}" wx:key="timeStamp" wx:for-item="log"> <text class="log-item">{{index + 1}}. {{log.date}}</text> </block> </view>
demo 源码地址
https://git.weixin.qq.com/depressiom/demo.git
这篇关于微信小程序 界面水印实现的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-20微信小程序开发入门指南
- 2024-12-20小程序 createCameraContext() 怎么实现识别条形码功能?-icode9专业技术文章分享
- 2024-11-22微信小程序的接口信息py可以抓到吗?-icode9专业技术文章分享
- 2024-11-22怎样解析出微信小程序二维码带的参数?-icode9专业技术文章分享
- 2024-11-22微信小程序二维码怎样解析成链接?-icode9专业技术文章分享
- 2024-11-22微信小程序接口地址的域名需要怎么设置?-icode9专业技术文章分享
- 2024-11-22微信小程序的业务域名有什么作用-icode9专业技术文章分享
- 2024-11-22微信小程序 image有类似html5的onload吗?-icode9专业技术文章分享
- 2024-11-22微信小程序中怎么实现文本内容超出行数后显示省略号?-icode9专业技术文章分享
- 2024-11-22微信小程序怎么实现分享样式定制和图片定制功能?-icode9专业技术文章分享