movable-area真机问题
发布于 7 年前 作者 jiangguiying 16055 次浏览 来自 问答

movable-area的高度如果写百分比的话,movable-view移动范围就会超出movable-area的范围,这是什么原因,怎么来解决?

<movable-area class="movefloat">

 <movable-view class="move-view" direction="all" inertia>

  <image class="float-img" src="../../image/creatP.png" bindtap="publish"></image>

 </movable-view>

</movable-area>


css:

.movefloat{

  margin-top: 50px;

  width: 100%; height: 20%; position: relative; z-index: 10;  background: red; 

}

.move-view{

  height: 50px; width: 50px; top: 85%; left: 80%; z-index: 200;

}




回到顶部