0

我用 jquery 创建了一些动画条。我只是真的只是在学习 jQuery 和 javascript。它昨晚工作,栏在某个滚动位置时动画,但现在它不起作用,没有任何改变。有人帮我吗?或者有比我正在做的更好的方法吗?

http://jsfiddle.net/FkUYf/1/

$(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);
    });
});
4

1 回答 1

1

你似乎没有达到 930 的保证金。它的330保证金工作正常。

http://jsfiddle.net/FkUYf/2/

于 2013-02-25T15:19:22.727 回答