UNPKG

anicollection

Version:

AniCollection, The easiest way to find, use and share CSS3 animations.

12 lines 1.57 kB
{ "name": "rotateOutUpRight", "className": "rotateOutUpRight animated", "cssCode": "@-webkit-keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom;\n transform-origin: right bottom;\n opacity: 1\n }\n 100% {\n -webkit-transform-origin: right bottom;\n transform-origin: right bottom;\n -webkit-transform: rotate3d(0, 0, 1, 90deg);\n transform: rotate3d(0, 0, 1, 90deg);\n opacity: 0\n }\n}\n\n@keyframes rotateOutUpRight {\n 0% {\n -webkit-transform-origin: right bottom;\n -ms-transform-origin: right bottom;\n transform-origin: right bottom;\n opacity: 1\n }\n 100% {\n -webkit-transform-origin: right bottom;\n -ms-transform-origin: right bottom;\n transform-origin: right bottom;\n -webkit-transform: rotate3d(0, 0, 1, 90deg);\n -ms-transform: rotate3d(0, 0, 1, 90deg);\n transform: rotate3d(0, 0, 1, 90deg);\n opacity: 0\n }\n}\n\n.rotateOutUpRight {\n -webkit-animation-name: rotateOutUpRight;\n animation-name: rotateOutUpRight\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 rotateOutUpRight {\n 0% {\n transform-origin: right bottom;\n opacity: 1\n }\n 100% {\n transform-origin: right bottom;\n transform: rotate3d(0, 0, 1, 90deg);\n opacity: 0\n }\n}\n\n.rotateOutUpRight {\n animation-name: rotateOutUpRight\n}" }