您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“小程序moveable-area和movealbe-view有什么區別”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“小程序moveable-area和movealbe-view有什么區別”這篇文章吧。
一. movable-area
movable-view的可移動區域。
二. movalbe-view
可移動的視圖容器,在頁面中可以拖拽滑動
注意點
movable-view必須設置width和height。不然就會默認為10px.
movable-view必須在<movable-area/>組件中,并且必須是直接子節點,否則不能移動
movable-view 默認為絕對定位,top和left屬性為0px
當movable-view小于movable-area時,movable-view的移動范圍是在movable-area內;
當movable-view大于movable-area時,movable-view的移動范圍必須包含movable-area(x軸方向和y軸方向分開考慮)
三. 可運行的代碼
wxml
<view class='container'>
<view class="section_title_less"> movable-view區域小于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區域大于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({
/**
* 頁面的初始數據
*/
data: {
x: "100px",
y: "10px"
},
/**
* 生命周期函數--監聽頁面加載
*/
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有什么區別”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。