js:
var startPoint
Page({
data: {
buttonTop: 0,
buttonLeft: 0,
windowHeight: '',
windowWidth: '',
corner_data:0,
},
onLoad:function(){
this.setData({
corner_data:3
})
var that =this;
wx.getSystemInfo({
success: function (res) {
console.log(res);
console.log('height=' + res.windowHeight);
console.log('width=' + res.windowWidth);
that.setData({
windowHeight: res.windowHeight,
windowWidth: res.windowWidth,
buttonTop:res.windowHeight*0.70,
buttonLeft:res.windowWidth*0.70,
})
}
})
},
btn_Suspension_click:function(){
wx.showToast({
title: '点击成功',
icon:'success',
duration:1000
})
},
buttonStart: function (e) {
startPoint = e.touches[0]
},
buttonMove: function (e) {
var endPoint = e.touches[e.touches.length - 1]
var translateX = endPoint.clientX - startPoint.clientX
var translateY = endPoint.clientY - startPoint.clientY
startPoint = endPoint
var buttonTop = this.data.buttonTop + translateY
var buttonLeft = this.data.buttonLeft + translateX
if (buttonLeft+50 >= this.data.windowWidth){
buttonLeft = this.data.windowWidth-50;
}
if (buttonLeft<=0){
buttonLeft=0;
}
if (buttonTop<=0){
buttonTop=0
}
if (buttonTop + 50 >= this.data.windowHeight){
buttonTop = this.data.windowHeight-50;
}
this.setData({
buttonTop: buttonTop,
buttonLeft: buttonLeft
})
},
buttonEnd: function (e) {
}
})
wxml:
<view class="btn_Suspension" bindtap="btn_Suspension_click" catchtouchmove="buttonMove" bindtouchstart="buttonStart" bindtouchend="buttonEnd" style="top:{{buttonTop}}px;left:{{buttonLeft}}px;">
<image class="Suspension_logo" src="../images/Suspension.png"></image>
<view wx:if="{{corner_data==0}}"></view>
<view wx:else>
<view class="cornorMark">
<text>{{corner_data}}</text>
</view>
</view>
</view>
wxss:
Page{
background: #f5f5f5;
}
.btn_Suspension{
position: fixed;
height: 100rpx;
width: 100rpx;
background-color: rgba(255, 255, 255, 0.755);
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 99999;
box-shadow: 1px 0px 1px 1px #ede7e7;
}
.Suspension_logo{
position:absolute;
height:50%;
width:50%;
left:23%;
top:27%
}
.cornorMark{
position:absolute;
background: rgb(242, 109, 38);
border:1px solid rgb(242, 109, 38);
border-radius: 100px;
width:30rpx;
height:30rpx;
top:-17rpx;
right:3rpx;
color:#fff;
font-size: 12px;
text-align: center;
}
.cornorMark text{
position:absolute;
width:100%;
left:0%;
text-align: center;
top:-1px;
}
图标素材下载地址:
Iconfont阿里巴巴矢量图标库:https://www.iconfont.cn/
请发表评论