收藏
回答

movable-view中添加animation没有效果

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug movable-view 工具 6.5.3 2.4.0

    

<movable-area class='mian1' >

<movable-view class='mian1_move' direction="all" inertia="true" bindchange="onChange" animation="{{move_animation}}">

text</movable-view>

</movable-area>

data: {

move_animation: "",

}

onChange(e) {

console.log(e.detail)

var that=this

if (e.detail.source == "friction"){

setTimeout(function(){

var move_animation = wx.createAnimation({

duration: 500,

timingFunction: "linear",

})

that.animation = move_animation

move_animation.opacity(0).step()

that.setData({

move_animation: move_animation.export()

})

console.log(111)

},400)

}

},

console.log能打印多次

回答关注问题邀请回答
收藏

3 个回答

  • 是小白啊
    是小白啊
    2018-11-12

    按照教程提供代码片段急了(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)

    2018-11-12
    有用
    回复 2
    • 钢子
      钢子
      2018-11-12

      可以了!谢谢你的好意!

      2018-11-12
      回复
    • Little
      Little
      2019-10-31回复钢子
      怎么好使的
      2019-10-31
      回复
  • 钢子
    钢子
    2018-11-12

    是的不能变的透明   怎么做代码片段给你

    2018-11-12
    有用
    回复
  • 卢霄霄
    卢霄霄
    2018-11-12

    你的意思是,不会变成透明吗?能做个代码片段吗?

    2018-11-12
    有用
    回复
登录 后发表内容