CSS - Rotate In Up Right Effect
Description
It provides to move or cause to move in a circle round an axis or centre.
Syntax
@keyframes rotateInUpRight {
0% {
transform-origin: right bottom;
transform: rotate(-90deg);
opacity: 0;
}
100% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
}
Parameters
Transform − Transform applies to 2d and 3d transformation to an element.
Opacity − Opacity applies to an element to make translucence.
Example
<html>
<head>
<style>
.riurAnimated {
background-image: url(/html/images/test.png);
background-repeat: no-repeat;
background-position: left top;
padding-top: 95px;
margin-bottom: 60px;
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(-10deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
-webkit-transform: rotate(0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
transform-origin: right bottom;
transform: rotate(-10deg);
opacity: 0;
}
100% {
transform-origin: right bottom;
transform: rotate(0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
</style>
</head>
<body>
<div id="riurAnimates" class="riurAnimated"></div>
<button onclick="riurFun()">Click</button>
<script>
function riurFun() {
document.getElementById("riurAnimates").classList.add('rotateInUpRight');
}
</script>
</body>
</html>
Output
It will produce the following result:
css_animation.htm
Advertisements