Skip to content

Instantly share code, notes, and snippets.

View pejalo's full-sized avatar

pejalo

  • Pennsylvania
View GitHub Profile
@pejalo
pejalo / LoadingThreeDots.svelte
Created August 10, 2023 23:07
Simple loading component showing " ..", ". .", ".. ", repeated every second
<script>
// Note: This is a waste of JavaScipt resources, and will not update nicely
// if you are running heavy computations. Better to use an SVG or CSS.
import { onMount } from "svelte"
const fullString = "..."
let currentString = ""
onMount(() => {