Socket
Socket
Sign inDemoInstall

svelte-loading-spinners

Package Overview
Dependencies
0
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    svelte-loading-spinners

Loading spinners using the svelte framework.


Version published
Weekly downloads
17K
decreased by-38.64%
Maintainers
1
Install size
66.4 kB
Created
Weekly downloads
 

Readme

Source

svelte-loading-spinners

collection of loading spinners with Svelte.js

Installation

npm i --save-dev svelte-loading-spinners

or

yarn add -D svelte-loading-spinners

Usage

Import navigating from $app/stores. When navigating starts, it's value is a Navigation object with from, to, type and (if type === 'popstate') delta properties. When navigating finishes, its value reverts to null.

Read More: Sveltekit Docs and Stackoverflow

By using an {#if $navigating} this allows us to show the loading animation when the page is loading and stop once it's fully rendered.

<script>
	import { Jumper } from 'svelte-loading-spinners';
	import { navigating } from '$app/stores'
</script>

{#if $navigating}
	<Jumper size="60" color="#FF3E00" unit="px" duration="1s" />
{/if}

List of available spinners

Props: size, color, unit, duration and pause. The default props; unit is px, color is #FF3E00 and size 60px.

Notes:

Circle2 instead of the color and duration props has colorOuter, colorCenter, colorInner, durationOuter, durationCenter, durationInner props.

Circle3 has ballTopLeft, ballTopRight, ballBottomLeft and ballBottomRight as props aswell.

Loaders
BarLoader
Chasing
Circle
Circle2
Circle3
DoubleBounce
Firework
Jellyfish
Jumper
Pulse
Rainbow
RingLoader
ScaleOut
Shadow
SpinLine
Stretch
SyncLoader
Wave
Square
Moon

Demo

List of all spinner: Demo

Development Setup

Keywords

FAQs

Last updated on 03 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc