mirror of
https://github.com/revanced/revanced-website.git
synced 2025-06-12 21:27:42 +02:00
feat: image optimization with imagetools
haha imagetools go brrr
This commit is contained in:
@ -1,16 +1,18 @@
|
||||
<script>
|
||||
import Picture from './Picture.svelte';
|
||||
import manager_screenshot from '$images/manager_two.png?w=1233;822;411&format=avif;webp;png&picture';
|
||||
</script>
|
||||
|
||||
<div class="hero-img">
|
||||
<img src="/manager_two.png" alt="Screenshot of ReVanced Manager" />
|
||||
<Picture data={manager_screenshot} alt="Screenshot of ReVanced Manager" />
|
||||
</div>
|
||||
|
||||
<style>
|
||||
img {
|
||||
height: 100%;
|
||||
border-radius: 2rem;
|
||||
.hero-img :global(img) {
|
||||
height: 100%;
|
||||
border-radius: 2rem;
|
||||
}
|
||||
|
||||
}
|
||||
.hero-img {
|
||||
overflow: hidden;
|
||||
height: 70vh;
|
||||
|
12
src/lib/components/atoms/Picture.svelte
Normal file
12
src/lib/components/atoms/Picture.svelte
Normal file
@ -0,0 +1,12 @@
|
||||
<script>
|
||||
// See: https://github.com/JonasKruckenberg/imagetools/blob/main/docs/directives.md#picture
|
||||
export let data;
|
||||
export let alt;
|
||||
</script>
|
||||
|
||||
<picture>
|
||||
{#each Object.entries(data.sources) as [format, images]}
|
||||
<source srcset={images.map(img => `${img.src} ${img.w}w`).join(", ")} type="image/{format}">
|
||||
{/each}
|
||||
<img {alt} src={data.fallback.src} />
|
||||
</picture>
|
Reference in New Issue
Block a user