Pages: add hover effect on cat images
This commit is contained in:
parent
e93c62e45a
commit
fada5e4880
|
@ -5,7 +5,7 @@ import Footer from '../components/Footer.astro';
|
|||
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
||||
import { Image } from 'astro:assets';
|
||||
|
||||
const imageFiles = (await Astro.glob('../assets/cat-pics/*')).sort().reverse();
|
||||
const imageFiles = (await Astro.glob('../assets/cat-pics/*'));
|
||||
---
|
||||
|
||||
<head>
|
||||
|
@ -27,14 +27,16 @@ const imageFiles = (await Astro.glob('../assets/cat-pics/*')).sort().reverse();
|
|||
</div>
|
||||
<div class="masonary">
|
||||
{
|
||||
imageFiles.map((img) => (
|
||||
imageFiles.reverse().map((img) => (
|
||||
<div class="meow-grid">
|
||||
<a href={img.default.src}>
|
||||
<Image
|
||||
src={img.default}
|
||||
width="600"
|
||||
alt="Photo of a pizza"
|
||||
class="meow-image"
|
||||
/>
|
||||
</a>
|
||||
</div>
|
||||
))
|
||||
}
|
||||
|
@ -73,4 +75,18 @@ const imageFiles = (await Astro.glob('../assets/cat-pics/*')).sort().reverse();
|
|||
grid-row: 1 / -1;
|
||||
grid-column: 1;
|
||||
}
|
||||
.meow-image:hover {
|
||||
box-shadow: 0px 10px 60px -10px;
|
||||
transform: translatey(-10px);
|
||||
cursor: pointer;
|
||||
animation: float 1s ease-in-out;
|
||||
}
|
||||
@keyframes float {
|
||||
0% {
|
||||
transform: translatey(0px);
|
||||
}
|
||||
100% {
|
||||
transform: translatey(-10px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue