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