1

我是初学者,我想知道如何创建类型效果(如这些 - https://stackoverflow.com/questions/4074399/what-to-choose-for-typewriter-effect-in-javascript)并拥有完成后转到另一个页面(window.location.href =“page”)...我不知道如何连接两者?

4

1 回答 1

0

查看这个问题,但请注意,如果您的打字机效果不允许您指定回调函数(大多数情况下不允许),第一个解决方案将不适合您。

如何让 jQuery 等到效果完成?

相反,我推荐使用 jQuery 1.6 promise() 方法的第二种解决方案。所以你的代码可能看起来像:

$(selector).teletype('slow');
$(selector).promise().done(function(){
    // will be called when all the animations on the queue finish
    window.location.href = "page";
});

确保您使用的是 jQuery 1.6 或更高版本。请注意,这要求 jQuery 将您的打字机效果视为效果。

于 2013-10-14T18:24:10.100 回答