问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug cover-view 客户端 6.6.7 2.2.5
.float-ball {
position: fixed;
width: 50px;
height: 50px;
bottom: 0px;
right: 0px;
}
bindtap="ballClickEvent"catchtouchmove="catchBallMove">
catchBallMove: function (e) {
let touchs = e.touches[0];
let pageX = touchs.pageX;
let pageY = touchs.pageY;
let offSetY = _this.data.offSetY;
let x = this.data.screenWidth - pageX - 25;
let y = this.data.screenHeight - (pageY - offSetY) + 25;
if(x < 0) {
x = 0;
}
if(x > _this.data.screenWidth - 50) {
x = _this.data.screenWidth - 50;
}
if(y < 45) {
y = 45;
}
if(y > _this.data.screenHeight) {
y = _this.data.screenHeight;
}
this.setData({
ballBottom: y,
ballRight: x,
});
},
微信小程序开发问题解答
微信小程序开发者回答:
transform:translate3d
本文网址:http://www.91bianli.com/weixinxiaochengxu/48149.html