소스 검색

scroll to top to close back the card

master
farhan 4 달 전
부모
커밋
ca46cd1f11
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. 10
    1
      resources/js/app.js

+ 10
- 1
resources/js/app.js 파일 보기

@@ -171,7 +171,16 @@ document.addEventListener('DOMContentLoaded', function() {
171 171
     }
172 172
 
173 173
     // Listen for click or touch event to start auto-scrolling
174
-    window.addEventListener('click', handleInteraction, { once: true });
174
+    window.addEventListener('click', handleInteraction);
175
+
176
+    window.addEventListener('scroll', function() {
177
+        if (window.pageYOffset === 0) {
178
+            audioElement.pause();
179
+            document.getElementById('petalOverlay').style.display = 'none';
180
+            hasPlayed = false; // Reset to allow replay
181
+            document.body.classList.add('no-scroll');
182
+        }
183
+    });
175 184
 
176 185
      // Intersection Observer for fading in elements
177 186
     const observerOptions = {

Loading…
취소
저장