在jquery类型效果之后切换页面

时间:2013-10-14 01:13:52

标签: jquery

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

1 个答案:

答案 0 :(得分:0)

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

How to get jQuery to wait until an effect is finished?

相反,我建议使用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将您的打字机效果视为效果。