【发布时间】:2014-07-26 19:46:24
【问题描述】:
只需尝试使用 waypoint.js 和 animate.css 更改滚动时的背景颜色。 为什么它不起作用?
$( document ).ready(function(){
console.log( "ready!" );
$('#one').waypoint(function(direction) {
if (direction == "up") {
$("body").animate({ backgroundColor: "#131314" }, 600);
} else if (direction == "down") {
$("body").animate({ backgroundColor: "#252525" }, 600);
}
});
});
【问题讨论】:
-
您是否检查过航点库是否正确加载?
-
我想是的。 console.log("准备好了!");工作
标签: javascript jquery css jquery-waypoints animate.css