modalWorking

master
Suvodip Ghosh 2023-02-24 18:46:29 +05:30
parent 2131d7ab16
commit 32a7d96579
2 changed files with 150 additions and 1 deletions

View File

@ -34,7 +34,6 @@
</div>
</div>
</section>
</div>
</template>
<style>

150
src/pages/modalt.astro Normal file
View File

@ -0,0 +1,150 @@
---
const videoResp = await fetch('https://management.beanstalkedu.com/items/theme_videos?filter[theme_key][_in]=3');
const videoRespJson = await videoResp.json();
const videoRespData = videoRespJson.data.reverse();
---
<main>
<section class="container mx-auto py-6 px-4 xl:px-24">
<div class="h1-text text-blue-700 font-semibold py-4">Videos</div>
<!-- <h1 class="text-2xl text-justify text-color-2 py-4" v-if="page">{data[0].videos_text}</h1> -->
<div v-if="videos" class="grid place-items-center grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-8">
{videoRespData.map((data: { video_thumb: string | undefined; videos_title: string | undefined; celebration_ideas_body_text: string | undefined; title: string | undefined; }) =>
<div class="p-4">
<div onclick="document.getElementById('id01').style.display='block'">
<div class="flex bg-gray-200 -rotate-6 cursor-pointer gap-8">
<div class="flex rotate-6 relative"><img v-if="vdo.video_thumb" src={'https://management.beanstalkedu.com/assets/'+data.video_thumb} alt="" class="rounded-tl-xl rounded-br-xl shadow-2xl" />
<img class="absolute top-16 left-24 -rotate-6 w-16" src="/img/svg/play.svg" alt="" />
</div>
</div>
<div class="mt-6 text-center text-xl text-color-2">{data.videos_title}</div>
</div>
</div>
<div id="id01" class="modal">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal"> &#10060;</span>
<form class="modal-content" action="/action_page.php">
<div style="width: 100%;">
<iframe width="380" height="320"
src={'https://www.youtube.com/embed/'+data.youtube_id}>
</iframe>
</div>
</form>
</div>
)}
</div>
</section>
</main>
<script is:inline>
// Get the modal
// var modal = document.getElementById('id01');
// // When the user clicks anywhere outside of the modal, close it
// window.onclick = function(event) {
// if (event.target == modal) {
// modal.style.display = "none";
// }
// }
</script>
<style>
/* Set a style for all buttons */
button {
background-color: #04AA6D;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
button:hover {
opacity:1;
}
/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
float: left;
width: 50%;
}
/* Add a color to the cancel button */
.cancelbtn {
background-color: #ccc;
color: black;
}
/* Add a color to the delete button */
.deletebtn {
background-color: #f44336;
}
/* Add padding and center-align text to the container */
.container {
padding: 16px;
text-align: center;
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: #474e5d;
padding-top: 50px;
}
/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}
/* Style the horizontal ruler */
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* The Modal Close Button (x) */
.close {
position: absolute;
right: 35px;
top: 15px;
font-size: 40px;
font-weight: bold;
color: #f1f1f1;
}
.close:hover,
.close:focus {
color: #f44336;
cursor: pointer;
}
/* Clear floats */
.clearfix::after {
content: "";
clear: both;
display: table;
}
/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
.cancelbtn, .deletebtn {
width: 100%;
}
}
</style>