jQuery text loading animation

后端 未结 5 1194
隐瞒了意图╮
隐瞒了意图╮ 2021-01-05 01:22

Trying to make a text ... loading animation

here\'s where I stand: http://jsfiddle.net/aGfct/

I can get the ... to be added at 500 ms intervals, but then I w

5条回答
  •  旧巷少年郎
    2021-01-05 01:50

    Try using setInterval also so like:

    setInterval(function(){
        for (i = 1; i <= 3; i++) {
            setTimeout(function() {
            $("#loading").append(".");
            }, i * 500);
        }
        $("#loading").html('loading');
    }, 2000);
    

提交回复
热议问题