Skip to content
loadsv

Component/
Slide

Three dots taking turns sliding into the empty corner of a square.

Size
<script>	import { Slide } from 'loadsv';</script><Slide size={48} />

Size

Sets the width and height in pixels. The default is 20.

<script>	import { Slide } from 'loadsv';</script><div class="flex items-center gap-6">	<Slide size={16} />	<Slide size={24} />	<Slide size={40} /></div>

Custom classes

Pass a class to adjust a spinner beyond what the props cover. The library’s own styles carry no specificity, so your classes always win.

<script>	import { Slide } from 'loadsv';</script><Slide class="opacity-40" size={32} />

Color

Spinners paint with currentColor, so they follow the text color around them. Pass any CSS color to tint one directly.

<script>	import { Slide } from 'loadsv';</script><Slide color="#ff3e00" size={32} />

Duration

Sets the length of one loop in milliseconds. Higher is slower. The default for this spinner is 2400. Set --lsv-duration on any ancestor to change every spinner inside it.

<script>	import { Slide } from 'loadsv';</script><Slide duration={4800} size={32} />

State

Pauses or resumes the animation with paused or running. Setting --lsv-play-state on an ancestor does the same for a whole subtree.

<script>	import { Slide } from 'loadsv';</script><Slide playState="paused" size={32} />

Accessibility

Spinners are decorative and hidden from assistive technology, so announce loading on the element that is busy, for example with aria-busy and visually hidden text. When reduced motion is on, spinners hold still and gently pulse instead.