anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
12 lines • 1.25 kB
JSON
{
"name": "lightSpeedOut",
"className": "lightSpeedOut animated",
"cssCode": "@-webkit-keyframes lightSpeedOut {\n 0% {\n opacity: 1\n }\n 100% {\n -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);\n transform: translate3d(100%, 0, 0) skewX(30deg);\n opacity: 0\n }\n}\n\n@keyframes lightSpeedOut {\n 0% {\n opacity: 1\n }\n 100% {\n -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);\n -ms-transform: translate3d(100%, 0, 0) skewX(30deg);\n transform: translate3d(100%, 0, 0) skewX(30deg);\n opacity: 0\n }\n}\n\n.lightSpeedOut {\n -webkit-animation-name: lightSpeedOut;\n animation-name: lightSpeedOut;\n -webkit-animation-timing-function: ease-in;\n animation-timing-function: ease-in\n}",
"editionLink": "codepen.io",
"author": "Dan Eden",
"source": "Animate.css",
"sourceUrl": "http://daneden.github.io/animate.css/",
"issues": "https://github.com/daneden/animate.css/issues",
"license": "MIT",
"plainCssCode": "@keyframes lightSpeedOut {\n 0% {\n opacity: 1\n }\n 100% {\n transform: translate3d(100%, 0, 0) skewX(30deg);\n opacity: 0\n }\n}\n\n.lightSpeedOut {\n animation-name: lightSpeedOut;\n animation-timing-function: ease-in\n}"
}