added image zoom
This commit is contained in:
53
src/components/GalaryZoom.astro
Normal file
53
src/components/GalaryZoom.astro
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<style lang="scss">
|
||||||
|
@import "../styles/_var.scss";
|
||||||
|
#galary-zoom {
|
||||||
|
display: none;
|
||||||
|
margin: 0;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 1;
|
||||||
|
#zoom-image {
|
||||||
|
position: sticky;
|
||||||
|
min-height: 20px;
|
||||||
|
min-width: 20px;
|
||||||
|
max-height: 35%;
|
||||||
|
max-width: 40%;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
background-color: white;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
@media (max-width: $responsive-width) {
|
||||||
|
#zoom-image {
|
||||||
|
position: sticky;
|
||||||
|
min-height: 20px;
|
||||||
|
min-width: 20px;
|
||||||
|
max-height: 100%;
|
||||||
|
max-width: 90%;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-7%, -50%);
|
||||||
|
background-color: white;
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
function maximizeImage(img) {
|
||||||
|
document.getElementById("galary-zoom").style.display = "initial";
|
||||||
|
document.getElementById("zoom-image").src = img.src;
|
||||||
|
}
|
||||||
|
function hide(dom) {
|
||||||
|
document.body.classList.remove("remove-scrolling");
|
||||||
|
dom.style.display = "none";
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div id="galary-zoom" onclick="hide(this)"><img id="zoom-image" /></div>
|
@@ -32,11 +32,27 @@ const { name, href, gallery } = Astro.props;
|
|||||||
max-width: 40vw;
|
max-width: 40vw;
|
||||||
transition: border-color 0.3s;
|
transition: border-color 0.3s;
|
||||||
.gallery {
|
.gallery {
|
||||||
margin-top: -25px;
|
margin-top: -30px;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
height: 260px;
|
||||||
img {
|
img {
|
||||||
|
position: static;
|
||||||
max-height: 250px;
|
max-height: 250px;
|
||||||
margin: 20px 10px;
|
margin: 20px 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
transition: all 0.3s;
|
||||||
|
cursor: pointer;
|
||||||
|
&:hover {
|
||||||
|
&.single {
|
||||||
|
position: relative;
|
||||||
|
height: inherit !important;
|
||||||
|
}
|
||||||
|
& {
|
||||||
|
margin: 0 !important;
|
||||||
|
max-height: 260px;
|
||||||
|
height: 280px;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
@@ -53,7 +69,8 @@ const { name, href, gallery } = Astro.props;
|
|||||||
}
|
}
|
||||||
@media (max-width: $responsive-width) {
|
@media (max-width: $responsive-width) {
|
||||||
.gallery {
|
.gallery {
|
||||||
margin-top: -3px;
|
height: initial !important;
|
||||||
|
margin-top: -4px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
* {
|
* {
|
||||||
margin: 2px !important;
|
margin: 2px !important;
|
||||||
@@ -62,6 +79,10 @@ const { name, href, gallery } = Astro.props;
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<script lang="ts"></script>
|
||||||
|
|
||||||
|
<div id="galary-zoom"><img id="zoom-image" /></div>
|
||||||
|
|
||||||
<div class={href ? "content" : "content no-hover"}>
|
<div class={href ? "content" : "content no-hover"}>
|
||||||
<a class="project-external" target={href ? "_blank" : ""} href={href}>
|
<a class="project-external" target={href ? "_blank" : ""} href={href}>
|
||||||
<h2>{name}</h2><slot />
|
<h2>{name}</h2><slot />
|
||||||
@@ -69,9 +90,16 @@ const { name, href, gallery } = Astro.props;
|
|||||||
<div class="gallery">
|
<div class="gallery">
|
||||||
{
|
{
|
||||||
Array.isArray(gallery) ? (
|
Array.isArray(gallery) ? (
|
||||||
gallery.map((src) => <img loading="lazy" src={src} />)
|
gallery.map((src) => (
|
||||||
|
<img onclick="maximizeImage(this)" loading="lazy" src={src} />
|
||||||
|
))
|
||||||
) : (
|
) : (
|
||||||
<img loading="lazy" src={gallery as string} />
|
<img
|
||||||
|
class="single"
|
||||||
|
onclick="maximizeImage(this)"
|
||||||
|
loading="lazy"
|
||||||
|
src={gallery as string}
|
||||||
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
import Layout from "../layouts/Layout.astro";
|
import Layout from "../layouts/Layout.astro";
|
||||||
import ProjectCard from "../components/ProjectCard.astro";
|
import ProjectCard from "../components/ProjectCard.astro";
|
||||||
|
import GalaryZoom from "../components/GalaryZoom.astro";
|
||||||
---
|
---
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@@ -15,6 +16,7 @@ import ProjectCard from "../components/ProjectCard.astro";
|
|||||||
<main>
|
<main>
|
||||||
<div style="margin-bottom: 20px;">
|
<div style="margin-bottom: 20px;">
|
||||||
<h1 style="text-align: center;">Projects</h1>
|
<h1 style="text-align: center;">Projects</h1>
|
||||||
|
<GalaryZoom />
|
||||||
<ProjectCard
|
<ProjectCard
|
||||||
name="voicenext"
|
name="voicenext"
|
||||||
gallery={[
|
gallery={[
|
||||||
|
@@ -179,11 +179,6 @@ button {
|
|||||||
|
|
||||||
@media (max-width: $responsive-width) {
|
@media (max-width: $responsive-width) {
|
||||||
.content{
|
.content{
|
||||||
width: 85vw !important;
|
min-width: 85vw !important;
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (max-width: $responsive-width-secondary) {
|
|
||||||
.content{
|
|
||||||
width: 85vw !important;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user