小程序
小游戏
企业微信
微信支付
扫描小程序码分享
反馈一个 Bug
沿着Y轴旋转的动画rotate3d没有生效,但是安卓可以的
var animation = wx.createAnimation()
animation.rotate3d(0, 1, 0, 360).step()
this.setData({
animation: animation.export(),
})
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
同遇到这个问题。
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:rotate3d(0,1,0,360deg);
}}
模版:
<view class="atest"></view>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
没有,还是不转啊
解决了吗
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
同遇到这个问题。
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>
没有,还是不转啊
解决了吗