canvas 和coverview优先级,微信小程序开发者工具会有Linux 版么?+微信小程序开发。coverview可以在其他的地方优先级高于canvas吗?真机上
/* pages/ceshi/ceshi.wxss */
.fiex{
position: fixed;
top: 0;
left: 0;
z-index: 99;
width: 100%;
height: 350rpx;
display: flex;
align-items: center;
justify-content: center;
background: #eee;
}
.img{
width: 120rpx;
height: 120rpx;
margin: 0 auto 0;
}
.img image{
width: 100%;
height: 100%;
}
.fix_con {
width: 200rpx;
height: 200rpx;
}
.name{
font-size: 32rpx;
text-align: center;
margin: 0 auto;
}
.myCanvas{
width: 100%;
height: 700rpx;
margin-top: 30vh;
}
名字
// pages/ceshi/ceshi.js
Page({
/**
* 页面的初始数据
*/
data: {
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
const ctx = wx.createCanvasContext('myCanvas')
ctx.setFillStyle('red')
ctx.fillRect(0, 50, 350, 750)
ctx.draw()
const ctx1 = wx.createCanvasContext('myCanvas1')
ctx1.setFillStyle('blue')
ctx1.fillRect(0, 70, 350, 750)
ctx1.draw()
const ctx2 = wx.createCanvasContext('myCanvas2')
ctx2.setFillStyle('pink')
ctx2.fillRect(0, 90, 350, 750)
ctx2.draw()
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})
本文网址:http://www.91bianli.com/weixinxiaochengxu/54552.html