
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
svelte-lazy-image
Advanced tools
Svelte component to lazy load images using Intersection Observer
Svelte component to lazy load images using Intersection Observer.
npm install svelte-lazy-image
Set data-src
and/or data-srcset
on an img
element:
<script>
import { useLazyImage as lazyImage } from 'svelte-lazy-image';
</script>
<img data-src="https://via.placeholder.com/250?text=src1" alt="foobar" use:lazyImage />
Specify IntersectionObserver options via object passed to use
:
<script>
import { LazyImage, useLazyImage as lazyImage } from 'svelte-lazy-image';
</script>
<img src="https://via.placeholder.com/250?text=placeholder1"
data-src="https://via.placeholder.com/250?text=src1" alt="foobar" use:lazyImage={{ threshold: 0.5 }}
/>
<script>
import { LazyImage } from 'svelte-lazy-image';
</script>
<LazyImage
src="https://via.placeholder.com/250?text=src"
placeholder="https://via.placeholder.com/250?text=placeholder"
alt="Lorem Ipsum"
/>
The component uses $$restProps
to pass props other than placeholder
, src
, or alt
to the underlying img
element. An example using img
attributes srcset
and sizes
:
<script>
import { LazyImage } from 'svelte-lazy-image';
</script>
<LazyImage
src="https://via.placeholder.com/250?text=src"
placeholder="https://via.placeholder.com/250?text=placeholder"
alt="Lorem Ipsum"
srcset="https://via.placeholder.com/480 480w, https://via.placeholder.com/800 800w"
sizes="(max-width: 600px) 480px, 800px"
/>
Specify IntersectionObserver options:
<script>
import { LazyImage } from 'svelte-lazy-image';
</script>
<LazyImage
src="https://via.placeholder.com/250?text=src"
placeholder="https://via.placeholder.com/250?text=placeholder"
alt="Lorem Ipsum"
options={{ threshold: 0.5 }}
/>
FAQs
Svelte component to lazy load images using Intersection Observer
The npm package svelte-lazy-image receives a total of 636 weekly downloads. As such, svelte-lazy-image popularity was classified as not popular.
We found that svelte-lazy-image demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.