Skip to content
This repository has been archived by the owner on Aug 11, 2019. It is now read-only.

sveltejs/svelte-transitions-fade

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DEPRECATED — As of Svelte v3, transitions are built into the main package

svelte-transitions-fade

Fade transition plugin for Svelte. Demo

fade-hello

Usage

Recommended usage is via svelte-transitions, but you can use this module directly if you prefer. Note that it assumes an ES module or CommonJS environment.

Install with npm or yarn:

npm install --save svelte-transitions-fade

Then add the plugin to your Svelte component's exported definition:

<label>
  <input type='checkbox' bind:checked='visible'> visible
</label>

{#if visible}
  <!-- use `in`, `out`, or `transition` (bidirectional) -->
  <div transition:fade>hello!</div>
{/if}

<script>
  import fade from 'svelte-transitions-fade';

  export default {
    transitions: { fade }
  };
</script>

Parameters

You can specify delay and duration parameters, which default to 0 and 400 respectively:

<div in:fade='{delay: 250, duration: 1000}'>
  fades in slowly after a short delay
</div>

License

MIT