我用jquery创建了一些动画条。我只是在学习jQuery& JavaScript的。它在昨晚工作,在某个滚动位置时动画条动画但现在它不起作用,没有任何改变。有人帮帮我吗?或者,有没有比我正在做的更好的方法呢?
$(document).ready(function(){
$(document).scroll(function() {
var top = $(document).scrollTop();
console.log(top);
if (top > 930) $("#html, #css").animate({width:"100%"}, 2000);
if (top > 930) $("#javascript").animate({width:"70%"}, 2000);
if (top > 930) $("#php").animate({width:"50%"}, 2000);
if (top > 930) $("#mysql").animate({width:"30%"}, 2000);
if (top > 930) $("#wordpress").animate({width:"60%"}, 2000);
});
});