溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

小程序moveable-area和movealbe-view有什么區(qū)別

發(fā)布時間:2022-03-15 10:40:47 來源:億速云 閱讀:240 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“小程序moveable-area和movealbe-view有什么區(qū)別”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“小程序moveable-area和movealbe-view有什么區(qū)別”這篇文章吧。

一. movable-area

movable-view的可移動區(qū)域。

二. movalbe-view

可移動的視圖容器,在頁面中可以拖拽滑動

  1. 注意點(diǎn)


  1. movable-view必須設(shè)置width和height。不然就會默認(rèn)為10px.

  2. movable-view必須在<movable-area/>組件中,并且必須是直接子節(jié)點(diǎn),否則不能移動

  3. movable-view 默認(rèn)為絕對定位,top和left屬性為0px

  4. 當(dāng)movable-view小于movable-area時,movable-view的移動范圍是在movable-area內(nèi);

  5. 當(dāng)movable-view大于movable-area時,movable-view的移動范圍必須包含movable-area(x軸方向和y軸方向分開考慮)

三. 可運(yùn)行的代碼

wxml


  1. <view class='container'>

  2. <view class="section_title_less"> movable-view區(qū)域小于movable-area </view>

  3. <movable-area class="area_less" scale-area>

  4. <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>

  5. </movable-area>

  6.  

  7. <view class="section_title_more"> movable-view區(qū)域大于movable-area </view>

  8. <movable-area class="area_more" scale-area>

  9. <movable-view class="view_more" direction="all">

  10. <text>可移動的view</text>

  11. </movable-view>

  12. </movable-area>

  13. </view>

wxss


  1. .container {

  2. display: flex;

  3. flex-direction: column;

  4. align-items: center;

  5. }

  6.  

  7. .section_title_less {

  8. font-size: 28rpx;

  9. }

  10.  

  11. .area_less {

  12. height: 200px;

  13. width: 200px;

  14. background-color: red;

  15. }

  16.  

  17. .view_less {

  18. height: 50px;

  19. width: 50px;

  20. background-color: yellow;

  21. }

  22.  

  23. .section_title_more {

  24. font-size: 28rpx;

  25. margin-top: 50px;

  26. }

  27.  

  28. .area_more {

  29. height: 50px;

  30. width: 50px;

  31. background-color: red;

  32. }

  33.  

  34. .view_more {

  35. height: 200px;

  36. width: 200px;

  37. border-color: green;

  38. border-width: 2px;

  39. border

js


  1. Page({

  2. /**

  3. * 頁面的初始數(shù)據(jù)

  4. */

  5. data: {

  6. x: "100px",

  7. y: "10px"

  8. },

  9.  

  10. /**

  11. * 生命周期函數(shù)--監(jiān)聽頁面加載

  12. */

  13. onLoad: function (options) {

  14. },

  15. change: function (event) {

  16. // console.log(event);

  17. },

  18. scale: function (event) {

  19. // console.log(event);

  20. },

  21. vtouchmove: function (event) {

  22. console.log("縱向");

  23. },

  24. htouchmove: function (event) {

  25. console.log("橫向");

  26. }

  27. })

以上是“小程序moveable-area和movealbe-view有什么區(qū)別”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(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)容。

AI