Yo : ./style/lib/ani/rotate-out-down-right.scss
源代码
源代码
@charset "utf-8"; @import "classes"; /** * @module rotate * @description 定义旋转从右往下退出动画 * @method rotate-out-down-right */ @-webkit-keyframes rotate-out-down-right { 0% { -webkit-transform-origin: right bottom; opacity: 1; } 100% { -webkit-transform-origin: right bottom; -webkit-transform: rotate3d(0, 0, 1, -90deg); opacity: 0; } } @keyframes rotate-out-down-right { 0% { transform-origin: right bottom; opacity: 1; } 100% { transform-origin: right bottom; transform: rotate3d(0, 0, 1, -90deg); opacity: 0; } } .ani.rotate-out-down-right { -webkit-animation-name: rotate-out-down-right; animation-name: rotate-out-down-right; }