diff --git a/pages/user/index.html b/pages/user/index.html
index 2dc08b4..8272824 100644
--- a/pages/user/index.html
+++ b/pages/user/index.html
@@ -5,4 +5,7 @@
Hello, .
What would you like to watch?
-
\ No newline at end of file
+
+
+
+
\ No newline at end of file
diff --git a/scripts/pages/user/main.js b/scripts/pages/user/main.js
new file mode 100644
index 0000000..d3c8e26
--- /dev/null
+++ b/scripts/pages/user/main.js
@@ -0,0 +1,33 @@
+document.addEventListener('DOMContentLoaded', function () {
+ var headerText = document.getElementById('headerText');
+ var h1 = document.querySelector('.user-index-h1');
+ var h2 = document.querySelector('.user-index-h2');
+
+ // Function to check if an element is in the viewport
+ function isInViewport(element) {
+ var rect = element.getBoundingClientRect();
+ return (
+ rect.top >= 0 &&
+ rect.left >= 0 &&
+ rect.bottom <= (window.innerHeight || document.documentElement.clientHeight) &&
+ rect.right <= (window.innerWidth || document.documentElement.clientWidth)
+ );
+ }
+
+ // Function to handle the scroll event
+ function handleScroll() {
+ if (isInViewport(headerText)) {
+ h1.classList.add('visible');
+ h2.classList.add('visible');
+ } else {
+ h1.classList.remove('visible');
+ h2.classList.remove('visible');
+ }
+ }
+
+ // Attach the handleScroll function to the scroll event
+ window.addEventListener('scroll', handleScroll);
+
+ // Initial check on page load
+ handleScroll();
+});
diff --git a/styles/pages/user/style.css b/styles/pages/user/style.css
index 3020ce8..23b8b25 100644
--- a/styles/pages/user/style.css
+++ b/styles/pages/user/style.css
@@ -19,4 +19,16 @@
.outlined-text {
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 2.2px #8c00ff;
-}
\ No newline at end of file
+}
+
+.user-index-h1,
+.user-index-h2 {
+ opacity: 0; /* Initially set opacity to 0 */
+ transform: translateX(-20px); /* Move elements outside the viewport to the left */
+ transition: opacity 0.8s ease, transform 0.8s ease; /* Apply transition effect */
+}
+
+.visible {
+ opacity: 1;
+ transform: translateX(0); /* Move elements back to their original position */
+}