Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在 32 秒后重定向到另一个页面。我需要平稳过渡到第二页。现在过渡非常突然,看起来不太好。有任何想法吗?
这是我的查询:
function redirect() { window.location = $('a').attr('href'); } setTimeout(redirect, 32000);
HTML5:
<a href="Holiday_Final.htm"></a>
您不能使用淡入淡出的效果进行重定向。您必须使用 ajax 来执行此类动画。
但是你可以试试这个
function redirect() { $('body').fadeOut(1000,function(){ window.location = $('a').attr('href'); }); } setTimeout(redirect, 31000);
在重定向之前您将有一个 1s 淡出(并且没有淡入,只是突然加载下一页)