刚刚才发现,这个博客主题列表的动画效果是有问题的

aos的fade-up没有效果,直接就显示出来了

检查了半天代码才发现,问题出在我当时改模板引入的自己原博客的css

1
2
3
4
5
@mixin transition-bg() {
transition-property: background-color,color,box-shadow;
transition-duration: 500ms;
transition-timing-function: ease-in-out;
}

把transition-property改成all就可以了

也不知道我当时为什么要这么写……也不考虑一下未来的发展空间(笑)