
お問い合わせ – Contact –
ご質問・ご相談・ご予約などをお受けしています。
下記フォームに必要事項を入力後、必ず入力内容をご確認の上送信ボタンを押してください。
$(window).scroll(function() { const documentHeight = $(document).height(); const windowHeight = $(window).height(); const fadeOutPoint = documentHeight - windowHeight - 50; // 50は最下部からの距離 const scrollAmount = $(window).scrollTop(); if (scrollAmount >= fadeOutPoint) { $('.floating-banner').fadeOut(300); // フェードアウトの速度 } else { $('.floating-banner').fadeIn(300); // フェードインの速度 } });