hyprland-website/src/routes/FameRicePreview.svelte

40 lines
1.1 KiB
Svelte
Raw Normal View History

2023-07-23 01:49:29 +02:00
<script>
import { animateIn } from '$lib/Helper.mjs'
/** @type {string}
* The path to the image. Usually the file within `static`, but can also be an URL
*/
export let image
/** @type {string | undefined} */
export let imageClass = undefined
/** @type {string | undefined} */
export let containerClass = undefined
</script>
2023-07-31 11:32:19 +02:00
<div class="rice {containerClass} group">
<div class="w-full h-full" use:animateIn={{ slide: 20, duration: 800 }}>
<img
src={image}
alt="Rice desktop"
2023-08-17 16:45:47 +02:00
class="max-sm:[xmask-image:none] w-full nice-hover object-cover object-top rounded-xl overflow-hidden shadow-2xl hover:scale-[1.01] {imageClass}"
2023-07-31 11:32:19 +02:00
/>
<img src={image} alt="Rice desktop" aria-hidden="true" class="rice-bg" />
2023-07-23 01:49:29 +02:00
</div>
</div>
<style lang="postcss">
.rice {
@apply relative w-full max-w-[1100px];
}
.nice-hover {
2023-07-31 11:32:19 +02:00
transition: all 540ms cubic-bezier(0.1, -0.81, 0.31, 2);
2023-07-23 01:49:29 +02:00
}
.rice-bg {
2023-08-17 16:45:47 +02:00
@apply pointer-events-none absolute -bottom-10 left-3 -z-10 h-full w-[calc(100%-24px)] rounded-3xl opacity-50 blur-2xl brightness-150 saturate-[5] transition-[filter] duration-500 max-sm:hidden;
2023-07-23 01:49:29 +02:00
.rice:hover & {
@apply brightness-200;
}
}
</style>