-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
1,120 additions
and
531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
<!DOCTYPE html> | ||
|
||
|
||
|
||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
|
@@ -131,6 +127,25 @@ | |
justify-content: center; | ||
gap: 8px; /* Adjust the gap between buttons */ | ||
} | ||
.circle { | ||
position: absolute; | ||
width: 25px; | ||
height: 25px; | ||
border-radius: 50%; | ||
pointer-events: none; | ||
background: radial-gradient(circle, rgba(71, 240, 255, 0.3), rgba(0, 119, 255, 0.3)); | ||
transition: transform 0.1s, left 0.1s, top 0.1s; | ||
} | ||
|
||
.circle-container { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
pointer-events: none; | ||
z-index: 9999; | ||
} | ||
</style> | ||
<link rel="stylesheet" href="imstyle.css"> | ||
<link rel="stylesheet" href="jquery.flipster.min.css"> | ||
|
@@ -141,6 +156,78 @@ | |
<body style="background-color: var(--secondary-color);"> | ||
|
||
<body> | ||
|
||
<div class="circle-container"> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
<div class="circle"></div> | ||
</div> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function () { | ||
const coords = { x: 0, y: 0 }; | ||
const circles = document.querySelectorAll(".circle"); | ||
|
||
circles.forEach(function (circle) { | ||
circle.x = 0; | ||
circle.y = 0; | ||
}); | ||
|
||
window.addEventListener("mousemove", function (e) { | ||
coords.x = e.pageX; | ||
coords.y = e.pageY - window.scrollY; // Adjust for vertical scroll position | ||
}); | ||
|
||
function animateCircles() { | ||
let x = coords.x; | ||
let y = coords.y; | ||
|
||
circles.forEach(function (circle, index) { | ||
circle.style.left = `${x - 12}px`; | ||
circle.style.top = `${y - 12}px`; | ||
circle.style.transform = `scale(${(circles.length - index) / circles.length})`; | ||
|
||
const nextCircle = circles[index + 1] || circles[0]; | ||
circle.x = x; | ||
circle.y = y; | ||
|
||
x += (nextCircle.x - x) * 0.3; | ||
y += (nextCircle.y - y) * 0.3; | ||
}); | ||
|
||
requestAnimationFrame(animateCircles); | ||
} | ||
|
||
animateCircles(); | ||
}); | ||
|
||
</script> | ||
|
||
|
||
<div id="bg"> | ||
|
@@ -159,14 +246,14 @@ | |
|
||
<ul class="navLinks"> | ||
|
||
<li class="link" data-aos=""><a href="#Home">Home</a></li> | ||
<li class="link" data-aos=""><a href="#AboutUs"> AboutUs</a></li> | ||
<li class="link" data-aos=""><a href="#Destinations">Destinations</a></li> | ||
<li class="link" data-aos=""><a href="#trip">Pricing</a></li> | ||
<li class="link" data-aos=""><a href="#ReviewGallery">Trip Gallery</a></li> | ||
<li class="link" data-aos=""><a href="#testimonials">Testimonials</a></li> | ||
<li class="link" data-aos=""><a href="index.html#Home">Home</a></li> | ||
<li class="link" data-aos=""><a href="index.html#AboutUs"> AboutUs</a></li> | ||
<li class="link" data-aos=""><a href="index.html#Destinations">Destinations</a></li> | ||
<li class="link" data-aos=""><a href="index.html#trip">Pricing</a></li> | ||
<li class="link" data-aos=""><a href="index.html#ReviewGallery">Trip Gallery</a></li> | ||
<li class="link" data-aos=""><a href="index.html#testimonials">Testimonials</a></li> | ||
<li class="link" data-aos=""><a href="feedback.html">Rate Us?</a></li> | ||
<li class="link" data-aos=""><a href="#cnt-form">Contact Us</a></li> | ||
<li class="link" data-aos=""><a href="index.html#cnt-form">Contact Us</a></li> | ||
|
||
|
||
</ul> | ||
|
@@ -291,7 +378,7 @@ <h2>Have More questions?</h2> | |
<p>Feel Free to Email us!</p> | ||
</div> | ||
<div> | ||
<button class="moreemail">Send Email</button> | ||
<button class="moreemail" onclick="sendEmail()">Send Email</button> | ||
</div> | ||
</div> | ||
|
||
|
@@ -367,6 +454,11 @@ <h2>Have More questions?</h2> | |
logoutButton.disabled = true; | ||
} | ||
}); | ||
|
||
|
||
function sendEmail() { | ||
window.location.href = "mailto:[email protected]"; | ||
} | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.