<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