UNPKG

anicollection

Version:

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

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