애플릿 전역 드래그 플로팅 플러그인
4028 단어 위챗 애플릿
page{
height: 100%;
}
.fixed-area{
width: 100%;
height: 100%;
-webkit-overflow-scrolling : touch;
}
.ball{
position: fixed;
background: #fff;
box-shadow: 0 0 5px #ddd;
border: #eee;
width:100rpx;
height:100rpx;
text-align: center;
z-index: 1002;
border-radius: 50%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.close-area{
position: fixed;
width: 500rpx;
height: 500rpx;
right: -250rpx;
bottom: -250rpx;
background: #eb5352;
border-radius: 50%;
z-index: 1001;
}
.big{
right: -230rpx;
bottom: -230rpx;
}
.close-icon{
height: 70rpx;
width: 70rpx;
position: absolute;
top: 90rpx;
left: 110rpx;
}
.close-text{
position: absolute;
top: 185rpx;
left: 98rpx;
font-size: 24rpx;
color: #fff;
}
.return-icon{
width: 40rpx;
height: 40rpx;
display: block;
margin-bottom: 3rpx;
}
.return-text{
color: #ca7;
font-size: 18rpx;
display: block;
}
// assembly/returnBall/returnBall.js
const app = getApp();
Component({
/**
*
*/
data: {
x: app.globalData.returnBall.x,
y: app.globalData.returnBall.y,
movableBlo: app.globalData.returnBall.show,
animate: false
},
methods: {
change(e) {
let screenWidth = this.data.screenWidth,
screenHeight = this.data.screenHeight;
let x = e.detail.x
let y = e.detail.y
if (x > screenWidth - 250 && y > screenHeight - 250) {
this.setData({
alreadyClose: true
})
} else {
this.setData({
alreadyClose: false
})
}
},
returnMini() {
app.navigate.returnBack()
},
touchStart() {
this.setData({
closeArea: true
})
},
end(e) {
let screenWidth = this.data.screenWidth,
screenHeight = this.data.screenHeight,
x = e.changedTouches[0].pageX,
y = e.changedTouches[0].pageY;
if (x > screenWidth - 100 && y > screenHeight - 100) {
app.globalData.returnBall.show = false
this.setData({
movableBlo: false
})
}
setTimeout(() => {
app.globalData.returnBall.x = screenWidth;
app.globalData.returnBall.y = y;
this.setData({
animate: true,
x: screenWidth,
y,
closeArea: false
})
}, 300)
},
scrollPage(e) {
let pages = getCurrentPages();
let curPage = pages[pages.length - 1];
if (curPage.myPageScroll) {
curPage.myPageScroll(e)
}
},
toBottom() {
let pages = getCurrentPages();
let curPage = pages[pages.length - 1];
if (curPage.toBottom) {
curPage.toBottom()
}
}
},
pageLifetimes: {
show() {
this.setData({
x: app.globalData.returnBall.x,
y: app.globalData.returnBall.y,
movableBlo: app.globalData.returnBall.show,
animate: false
})
this.setData({
screenWidth: wx.getSystemInfoSync().windowWidth,
screenHeight: wx.getSystemInfoSync().windowHeight
})
},
}
})
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
유니앱, 위챗 애플릿에서 MQTT 사용 문제(1)MQTT.js는 JavaScript로 작성된 MQTT 프로토콜의 클라이언트 라이브러리로 Node에 사용할 수 있습니다.js와 브라우저.노드에서.js단은 전역 설치를 통해 명령행 연결을 사용할 수 있으며 MQTT...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.