jQuery text loading animation

后端 未结 5 1192
隐瞒了意图╮
隐瞒了意图╮ 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条回答
  •  旧时难觅i
    2021-01-05 01:52

    http://jsfiddle.net/paska/aGfct/12/

    var originalText = $("#loading").text(),
        i  = 0;
    setInterval(function() {
    
        $("#loading").append(".");
        i++;
    
        if(i == 4)
        {
            $("#loading").html(originalText);
            i = 0;
        }
    
    }, 500);
    

提交回复
热议问题