0
只需嘗試使用waypoint.js和animate.css更改滾動背景色。 爲什麼它不起作用?Waypoint Jquery Animate
$(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);
}
});
});
你檢查過航點庫是否正確加載? – doniyor
我這麼認爲。 console.log(「ready!」);工作 – user171717