anicollection
Version:
AniCollection, The easiest way to find, use and share CSS3 animations.
12 lines • 1.33 kB
JSON
{
"name": "bounceOutLeft",
"className": "bounceOutLeft animated",
"cssCode": "@-webkit-keyframes bounceOutLeft {\n 20% {\n opacity: 1;\n -webkit-transform: translate3d(20px, 0, 0);\n transform: translate3d(20px, 0, 0)\n }\n 100% {\n opacity: 0;\n -webkit-transform: translate3d(-2000px, 0, 0);\n transform: translate3d(-2000px, 0, 0)\n }\n}\n\n@keyframes bounceOutLeft {\n 20% {\n opacity: 1;\n -webkit-transform: translate3d(20px, 0, 0);\n -ms-transform: translate3d(20px, 0, 0);\n transform: translate3d(20px, 0, 0)\n }\n 100% {\n opacity: 0;\n -webkit-transform: translate3d(-2000px, 0, 0);\n -ms-transform: translate3d(-2000px, 0, 0);\n transform: translate3d(-2000px, 0, 0)\n }\n}\n\n.bounceOutLeft {\n -webkit-animation-name: bounceOutLeft;\n animation-name: bounceOutLeft\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 bounceOutLeft {\n 20% {\n opacity: 1;\n transform: translate3d(20px, 0, 0)\n }\n 100% {\n opacity: 0;\n transform: translate3d(-2000px, 0, 0)\n }\n}\n\n.bounceOutLeft {\n animation-name: bounceOutLeft\n}"
}