Yoshi的jQuery打字机效果中断循环

时间:2014-06-26 06:22:50

标签: jquery

我还是jQuery的新手。我Yoshi找到了这种打字效果并喜欢它!有人可以告诉我,如何让它在最后一行停止/冻结?

这是脚本: http://jsbin.com/araget/459/

以下是Yoshi回答的问题: https://stackoverflow.com/a/13325547

如果我发布的内容不正确,我会道歉,我只是找不到另一种方式来问这个问题而且我被卡住了:/

1 个答案:

答案 0 :(得分:1)

如果长度等于clearTimeout

,请尝试添加text-index
var clr=null;// variable for clearing timeout
.....
clr = setTimeout(function () { // 
    if(idx==settings.text.length-1){ // check if the length is equal to text.length-1
        clearTimeout(clr); // clear timeout
        return false;  // break the loop     
    }
    ....
    ....

<强> Live Demo