其实就是滚动到240px时添加了一个animate.css中的fadeInDown动画,如何在小于240时使之用fadeInUp返回
window.onscroll = function() {
var scrollTop = document.body.scrollTop || document.documentElement.scrollTop;
if(scrollTop >= 240){
$(".header").addClass("header-pst animated2 fadeInDown");
$(".header-color").addClass("header-color-bg animated fadeInDown");
} else {
$(".header").removeClass("header-pst animated2 fadeInDown");
$(".header-color").removeClass("header-color-bg animated fadeInDown");
}
上面这是进入动画的代码,或者有没有更好的方法
与/q/1010000004593698
重复
闭关修行中......