Yo 源文件
Yo 是一款基于 Mobile First 理念而设计的 CSS Framework,当然,它也适应于PC端的高级浏览器;其具备轻量,易用,快速且高度强大的自定义能力
Yo 是一款基于 Mobile First 理念而设计的 CSS Framework,当然,它也适应于PC端的高级浏览器;其具备轻量,易用,快速且高度强大的自定义能力
@charset "utf-8"; @import "classes"; /** * @module animate * @class rotate * @description 定义旋转动画 * @method rotate */ @-webkit-keyframes rotate { from { -webkit-transform: rotatez(0); } to { -webkit-transform: rotatez(360deg); } } @keyframes rotate { from { transform: rotatez(0); } to { transform: rotatez(360deg); } } .ani.rotate { -webkit-animation-name: rotate; animation-name: rotate; }