6.6.2版微信 movabale-view不能动态的修改位置属性x和y的值
反馈一个 Bug :
*新版微信 movabale-view 不能动态的修改位置属性x和y的值,6.6.2一下版本都是可以动态修改这两个属性值的。
* 使用6.6.2版本微信都可以重现。
* demo如下
< movable-area style = "height: 200px;width: 200px;background: red;" > < movable-view style = "height: 50px; width: 50px; background: blue;" x = "{{playCardPosition.x}}" y = "{{playCardPosition.y}}" direction = "all" > </ movable-view >
<button class="button-right" style="width:40%;" bindtap="tap">确认</button> |
Page({ data: { playCardPosition: {x:0,y:0}, }, tap: function (e) { this .setData({ playCardPosition: {x: Math.random() * 100, y: Math.random() * 80}, }); } }) |