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

22 lines
296 B
Stylus
Raw Normal View History

.animated {
animation-fill-mode: both;
animation-duration: 1s;
2020-03-20 17:43:45 +08:00
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);
}
}