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-out-up-left */ @-webkit-keyframes rotate-out-up-left { 0% { -webkit-transform-origin: left bottom; opacity: 1; } 100% { -webkit-transform-origin: left bottom; -webkit-transform: rotate3d(0, 0, 1, -90deg); opacity: 0; } } @keyframes rotate-out-up-left { 0% { transform-origin: left bottom; opacity: 1; } 100% { transform-origin: left bottom; transform: rotate3d(0, 0, 1, -90deg); opacity: 0; } } .ani.rotate-out-up-left { -webkit-animation-name: rotate-out-up-left; animation-name: rotate-out-up-left; }