您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“小程序moveable-area和movealbe-view有什么區(qū)別”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“小程序moveable-area和movealbe-view有什么區(qū)別”這篇文章吧。
一. movable-area
movable-view的可移動區(qū)域。
二. movalbe-view
可移動的視圖容器,在頁面中可以拖拽滑動
注意點(diǎn)
movable-view必須設(shè)置width和height。不然就會默認(rèn)為10px.
movable-view必須在<movable-area/>組件中,并且必須是直接子節(jié)點(diǎn),否則不能移動
movable-view 默認(rèn)為絕對定位,top和left屬性為0px
當(dāng)movable-view小于movable-area時,movable-view的移動范圍是在movable-area內(nèi);
當(dāng)movable-view大于movable-area時,movable-view的移動范圍必須包含movable-area(x軸方向和y軸方向分開考慮)
三. 可運(yùn)行的代碼
wxml
<view class='container'>
<view class="section_title_less"> movable-view區(qū)域小于movable-area </view>
<movable-area class="area_less" scale-area>
<movable-view class="view_less" direction="all" scale inertia out-of-bounds x="{{x}}" y="{{y}}" damping="1" friction="200" bindchange="change" bindscale="scale"></movable-view>
</movable-area>
<view class="section_title_more"> movable-view區(qū)域大于movable-area </view>
<movable-area class="area_more" scale-area>
<movable-view class="view_more" direction="all">
<text>可移動的view</text>
</movable-view>
</movable-area>
</view>
wxss
.container {
display: flex;
flex-direction: column;
align-items: center;
}
.section_title_less {
font-size: 28rpx;
}
.area_less {
height: 200px;
width: 200px;
background-color: red;
}
.view_less {
height: 50px;
width: 50px;
background-color: yellow;
}
.section_title_more {
font-size: 28rpx;
margin-top: 50px;
}
.area_more {
height: 50px;
width: 50px;
background-color: red;
}
.view_more {
height: 200px;
width: 200px;
border-color: green;
border-width: 2px;
border
js
Page({
/**
* 頁面的初始數(shù)據(jù)
*/
data: {
x: "100px",
y: "10px"
},
/**
* 生命周期函數(shù)--監(jiān)聽頁面加載
*/
onLoad: function (options) {
},
change: function (event) {
// console.log(event);
},
scale: function (event) {
// console.log(event);
},
vtouchmove: function (event) {
console.log("縱向");
},
htouchmove: function (event) {
console.log("橫向");
}
})
以上是“小程序moveable-area和movealbe-view有什么區(qū)別”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。