Yo 源文件
Yo 是一款基于 Mobile First 理念而设计的 CSS Framework,当然,它也适应于PC端的高级浏览器;其具备轻量,易用,快速且高度强大的自定义能力
Yo 是一款基于 Mobile First 理念而设计的 CSS Framework,当然,它也适应于PC端的高级浏览器;其具备轻量,易用,快速且高度强大的自定义能力
@charset "utf-8"; @import "classes"; /** * @module animate * @class elastic * @description 定义弹性向右移出动画 * @method elastic-out-right */ @-webkit-keyframes elastic-out-right { 20% { -webkit-transform: translate3d(10px, 0, 0); } 40%, 45% { opacity: 1; -webkit-transform: translate3d(-20px, 0, 0); } 100% { opacity: 0; -webkit-transform: translate3d(2000px, 0, 0); } } @keyframes elastic-out-right { 20% { transform: translate3d(10px, 0, 0); } 40%, 45% { opacity: 1; transform: translate3d(-20px, 0, 0); } 100% { opacity: 0; transform: translate3d(2000px, 0, 0); } } .ani.elastic-out-right { -webkit-animation-name: elastic-out-right; animation-name: elastic-out-right; }