UNPKG

anicollection

Version:

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

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