Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I added a video popup on clicking the watch story button and also a new cursor #1688

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added cursor.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 72 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,13 @@
align-items: flex-end;
width: auto;
}
body {
cursor: none;
}
body {
cursor: url('cursor.png'), auto;
}

}

.circle {
Expand Down Expand Up @@ -631,21 +638,22 @@ <h1 data-aos="fade-in">Find Your Perfect Getaway<br />Discover the World's Best


<br>
<div class="story">
<div class="video">
<img src="https://i.ibb.co/KwHd8PQ/pexels-stijn-dijkstra-2499699.jpg" type="video/mp4"
style="box-shadow:2px 2px 8px blue;">
<!-- link to the hmtl page with the video -->
<a href="story.html" class="btn_video">
<span><i class="ri-play-fill"></i></span>
</a>
<div class="video-container">
<a href="javascript:void(0);" class="btn_video" onclick="showPopup()">
<span><i class="ri-play-fill"></i></span>
</a>
<br>
<span data-aos="fade-in" style="color: #5755b6; font-weight: 600;">Watch our story</span>
</div>

<!-- Popup -->
<div id="videoPopup" class="popup">
<div class="popup-content">
<span class="close-btn" onclick="hidePopup()">&times;</span>
<iframe id="videoFrame" src="story.html" frameborder="0" allowfullscreen></iframe>
</div>

</div>
<br>
<span data-aos="fade-in" style="color: #5755b6; font-weight: 600;">Watch our story</span>
</div>
</div>

</section>
</header>

Expand All @@ -667,6 +675,46 @@ <h1 class="headingofAbout section__title" data-aos="fade-in"><b>About Us</b></h1
<!-- Article with about us content -->
<article class="w-full text-left format sm:format-base lg:format-lg format-blue dark:format-invert">
<!-- Adding the content -->
<style>
/* Popup Styles */
.popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 1000;
}

.popup-content {
position: relative;
margin: 5% auto;
width: 90%;
max-width: 1000px;
background: #fff;
padding: 0;
border-radius: 8px;
overflow: hidden;
aspect-ratio: 16 / 9; /* Dynamically adjust height based on width for a 16:9 ratio */
}
iframe {
width: 100%;
height: 600px; /* Increases the height of the video */
border: none;
}

.close-btn {
position: absolute;
top: 10px;
right: 10px;
font-size: 24px;
color: #000;
cursor: pointer;
}

</style>
<style>
/* CSS for hover effect */
.aboutcontent:hover {
Expand Down Expand Up @@ -1053,7 +1101,18 @@ <h1 class="card-title">Times Square</h1>
<button class="swiper-button-prev"></button>
<button class="swiper-button-next"></button>
</div>
<script>
function showPopup() {
const popup = document.getElementById("videoPopup");
popup.style.display = "block";
}

function hidePopup() {
const popup = document.getElementById("videoPopup");
popup.style.display = "none";
}

</script>
<script src="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.js"></script>
<script src="explore.js"></script>
</section>
Expand Down
Loading