translation在ios真机上没有过渡效果
在ios真机上
点击事件 ,isSend:true 然后没有1s的过渡效果
<view class=" translation1s {{isSend?‘smallRemark’:’’}}">
<text >AMG</text>
</view>
.translation1s {
-moz-transition: all 1s; /* Firefox 4 */
-webkit-transition: all 1s; /* Safari 和 Chrome */
-o-transition: all 1s;
transition: all 1s;
}
.smallRemark {
/* transition: all 1s; */
transform: translate(20%, -300%) scale(0.9);
-moz-transform: translate(20%, -300%) scale(0.9);
-webkit-transform: translate(20%, -300%) scale(0.9);
-o-transform: translate(20%, -300%) scale(0.9);
}