我想慢慢地淡出當前網頁並淡入在下一頁中,當我點擊任何其他頁面的鏈接時(在我的網站中)。想要淡出當前的網頁並淡入下一個?
$(document).ready(function() {
$('body').css("display","none");
$('body').fadeIn(2000);
$("a:transition").click(function() {
event.preventDefault();
linkLocation=this.href();
$('body').fadeOut('slow', 0, redirectPage);
});
function redirectPage() {
window.location=linkLocation;
};
});
http://jsfiddle.net/Rohanhola/vmpnc9f0/2/
與上面的代碼,我能淡化在接下來的頁面中的內容,本網頁上的淡出似乎並沒有工作!
歡迎光臨!
在此先感謝。
將this.href改爲$(this).attr('href'); – anpsmn 2015-03-02 13:21:30