收藏
回答

沿着Y轴旋转的动画rotate3d在ios里不生效

框架类型 操作系统 操作系统版本 手机型号 微信版本
小程序 iOS iOS 11.2.6 iphon7 6.6.5

反馈一个 Bug

沿着Y轴旋转的动画rotate3d没有生效,但是安卓可以的


var animation = wx.createAnimation()

animation.rotate3d(0, 1, 0, 360).step()

this.setData({

animation: animation.export(),

})


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

3 个回答

  • 王蕊
    王蕊
    2018-07-11

    同遇到这个问题。

    CSS:

    .atest{

    margin:100rpx;

    height:100rpx;

    width:100rpx;

    background:red;

    transform:translate3d(0,0,0);

        animation:rotate infinite 1s linear;

    }

    @keyframes rotate {

        0% {

        transform-origin:center;

        transform:rotate3d(0,1,0,0deg);

    }

    100% {

        transform-origin:center;

        transform:rotate3d(0,1,0,360deg);

    }}

    模版:

    <view class="atest"></view>


    2018-07-11
    有用
    回复
  • 孙杨-DEV&KEEP
    孙杨-DEV&KEEP
    2018-04-01

    没有,还是不转啊

    2018-04-01
    有用
    回复
  • 牛
    2018-03-28

    解决了吗

    2018-03-28
    有用
    回复
登录 后发表内容