Skip to main content
Create new
Introduction
Reactivity
Props
Logic
Events
Bindings
Lifecycle
Stores
Motion
Transitions
Animations
Easing
SVG
Actions
Classes
Component composition
Context API
Special elements
Module context
Debugging
7GUIs
Miscellaneous
App.svelte
<script>
import { get } from 'svelte/store'
import { tweened } from 'svelte/motion'
import { elasticInOut } from 'svelte/easing'
const max = 1000
const duration = 4000
let elapsed = 0
const easing = t => { elapsed = t; return elasticInOut(t) }
const pos = tweened(0, {easing, duration})
function play() {
elapsed = 0
pos.set(0, {duration: 0})
$pos = max
}
function pause() {
pos.set($pos, {duration: 0})
}
function continueOn() {
const current = $pos
const remaining = 1-elapsed
const remainingMs = remaining*duration
const patchedEasing = t => easing(elapsed + (t*remaining))
pos.set(max, {duration: remainingMs, easing: patchedEasing})
}
</script>

<progress value={$pos} {max}/>

<button on:click={play}>
Play
loading Svelte compiler...
/* Select a component to see its compiled code */
result = svelte.compile(source, {
generate: ,
});
/* Select a component to see its compiled code */