hexo-theme-keep/source/css/animated.styl

22 lines
296 B
Stylus

.animated {
animation-fill-mode: both;
animation-duration: 1s;
animation-name fade-in-down
}
.animated.hinge {
animation-duration: 1s;
}
@keyframes fade-in-down {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}