hi-ucs/node_modules/animate.css/source/rotating_entrances/rotateInDownRight.css

17 lines
263 B
CSS
Raw Normal View History

2022-08-16 09:55:42 +08:00
@keyframes rotateInDownRight {
from {
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInDownRight {
animation-name: rotateInDownRight;
transform-origin: right bottom;
}