Motion
This section uses tweening to animate changes made to the DOM at the click of a button.
<ProgressBar
label="Progress Bar"
value={$progress}
max={100}
class="my-2"
meter="bg-success-500 dark:bg-success-400"
track="bg-surface-200 dark:bg-surface-400"
height="h-4"
/>
<button on:click={() => progress.set(0)} class="btn variant-filled-secondary my-2">
0%
</button>
<button on:click={() => progress.set(25)} class="btn variant-filled-secondary my-2">
25%
</button>
<button on:click={() => progress.set(50)} class="btn variant-filled-secondary my-2">
50%
</button>
<button on:click={() => progress.set(75)} class="btn variant-filled-secondary my-2">
75%
</button>
<button on:click={() => progress.set(100)} class="btn variant-filled-secondary my-2">
100%
</button>
This is the typescript used to control the animation of the Progress Bar.
import { tweened } from 'svelte/motion';
import { cubicOut } from 'svelte/easing';
const progress = tweened(0, {
duration: 400,
easing: cubicOut
});
This section uses spring to change the damping and stiffness of an SVG.
<div class="w-[200px] select-none">
<label>
<h3>stiffness ({coords.stiffness})</h3>
<input bind:value={coords.stiffness} type="range" min="0.01" max="1" step="0.01" class="w-full" />
</label>
<label>
<h3>damping ({coords.damping})</h3>
<input bind:value={coords.damping} type="range" min="0.01" max="1" step="0.01" class="w-full" />
</label>
</div>
<svg
on:mousemove={(e) => {
const { left, top, width, height } = e.currentTarget.getBoundingClientRect();
coords.set({ x: e.clientX - left, y: e.clientY - top });
}}
on:mousedown={() => size.set(30)}
on:mouseup={() => size.set(10)}
class="w-full h-128 border-2 border-tertiary-400 rounded-md ml-2"
>
<circle cx={$coords.x} cy={$coords.y} r={$size} fill="#663363" />
</svg>
This is the typescript used to set the default stiffness and damping values for the spring function.
import { spring } from 'svelte/motion';
let coords = spring(
{ x: 50, y: 50 },
{
stiffness: 0.1,
damping: 0.25
}
);
let size = spring(10);