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

25 lines
317 B
Stylus
Raw Normal View History

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