CSS3 速移动效果动画流畅无卡顿

js或jquery 元素移动以像素计算,手机上移动效果会有卡顿

利用CSS3 可以很简单的实现流畅的移动动画

transform: translate3d(66px, 88px, 0px) rotate(45deg); 
transition: transform 3s linear 0s; 

说明:

translate3d(66px, 88px, 0) 表示X轴偏移66px, Y轴偏移88px

rotate(45deg) 表示在此过程中旋转45°


transition: transform 3s linear 0s; 表示动画时间3秒    速度方式:linear    延迟0s

原文地址:https://www.cnblogs.com/xiangsj/p/6245490.html