0
我在點擊鏈接時嘗試添加淡入淡出效果時遇到問題。它鏈接到我爲這個項目提供的另一個HTML文件。是否有可能使用fadeIn()淡入window.location?對於使用jQuery的HTML文件點擊效果淡入
這裏是我的代碼:
$("button1").on("click", function() {
window.location.replace("index2.html");
});
$(".button2").on("click", function() {
window.location.replace("index3.html");
});
$(".button3").on("click", function() {
window.location.replace("index1.html");
});
這很完美 - 謝謝! – anbhd