mirror of
https://github.com/hyprwm/hyprland-website.git
synced 2024-11-17 02:45:59 +01:00
Revert "HeroBackground: Remove images+animations"
This reverts commit 4979bf2a39
.
This commit is contained in:
parent
b4762f0dbd
commit
5da0d85244
2 changed files with 72 additions and 5 deletions
|
@ -12,6 +12,12 @@ function getHeroBackgroundTiles() {
|
|||
const workspaceHeight = 240
|
||||
const gapLength = 32
|
||||
const colors = [baseColors.blue[500], baseColors.cyan[400], baseColors.sky[500]]
|
||||
const images = [
|
||||
'/imgs/chan/joy.svg',
|
||||
'/imgs/chan/surprise.svg',
|
||||
'/imgs/chan/tongueout.svg',
|
||||
'/imgs/waylnad.webp'
|
||||
]
|
||||
|
||||
const leftColumns = Array.from({ length: 3 }, () => generateRow(workspacesPerRow))
|
||||
|
||||
|
@ -50,11 +56,16 @@ function getHeroBackgroundTiles() {
|
|||
}
|
||||
|
||||
function generateTile() {
|
||||
return { color: getRandomColor() }
|
||||
return { color: getRandomColor(), image: Math.random() > 0.7 ? getRandomImage() : undefined }
|
||||
}
|
||||
|
||||
/** @returns {string} */
|
||||
function getRandomColor() {
|
||||
return colors.at(Math.floor(Math.random() * colors.length))
|
||||
}
|
||||
|
||||
/** @returns {string} */
|
||||
function getRandomImage() {
|
||||
return images.at(Math.floor(Math.random() * images.length))
|
||||
}
|
||||
}
|
||||
|
|
|
@ -20,8 +20,13 @@
|
|||
<div class="workspace">
|
||||
{#each workspace as tiles}
|
||||
<div class="tiles">
|
||||
{#each tiles as { color }}
|
||||
<div class="tile" style:--color={color}></div>
|
||||
{#each tiles as { color, image }}
|
||||
<div
|
||||
class="tile"
|
||||
style:--color={color}
|
||||
class:with-image={image}
|
||||
style:--image={`url(${image})`}
|
||||
></div>
|
||||
{/each}
|
||||
</div>
|
||||
{/each}
|
||||
|
@ -38,8 +43,13 @@
|
|||
<div class="workspace">
|
||||
{#each workspace as tiles}
|
||||
<div class="tiles">
|
||||
{#each tiles as { color }}
|
||||
<div class="tile" style:--color={color}></div>
|
||||
{#each tiles as { color, image }}
|
||||
<div
|
||||
class="tile"
|
||||
style:--color={color}
|
||||
class:with-image={image}
|
||||
style:--image={`url(${image})`}
|
||||
></div>
|
||||
{/each}
|
||||
</div>
|
||||
{/each}
|
||||
|
@ -169,6 +179,23 @@
|
|||
animation: reveal-artwork_tile calc(var(--reveal-length) + 280ms)
|
||||
cubic-bezier(1, -0.4, 0.165, 1) forwards;
|
||||
}
|
||||
|
||||
&.with-image::after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image: var(--image);
|
||||
background-position: center;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
opacity: 0;
|
||||
transition: opacity 1520ms ease-in-out;
|
||||
}
|
||||
&:hover::after {
|
||||
animation: reveal-artwork var(--reveal-length) ease-in-out 400ms both;
|
||||
opacity: 1;
|
||||
transition: opacity 1520ms ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
.top-light {
|
||||
|
@ -187,4 +214,33 @@
|
|||
pointer-events: none;
|
||||
contain: strict;
|
||||
}
|
||||
|
||||
@keyframes reveal-artwork {
|
||||
0% {
|
||||
opacity: 0%;
|
||||
filter: brightness(1);
|
||||
}
|
||||
50% {
|
||||
filter: brightness(1.45);
|
||||
opacity: 40%;
|
||||
}
|
||||
100% {
|
||||
filter: brightness(1);
|
||||
opacity: 100%;
|
||||
}
|
||||
}
|
||||
@keyframes reveal-artwork_tile {
|
||||
0% {
|
||||
opacity: inherit;
|
||||
scale: 1;
|
||||
}
|
||||
50% {
|
||||
filter: brightness(1.5);
|
||||
scale: 1.1;
|
||||
}
|
||||
100% {
|
||||
opacity: 100%;
|
||||
scale: 1;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue