Skip to content

Instantly share code, notes, and snippets.

@el3um4s
Created October 15, 2022 14:03
Show Gist options
  • Save el3um4s/705a7300461a0015e31a946aeb80e905 to your computer and use it in GitHub Desktop.
Save el3um4s/705a7300461a0015e31a946aeb80e905 to your computer and use it in GitHub Desktop.
MEDIUM - How To Show Notifications in Web Application - 11
<script>
import { flip } from "svelte/animate";
import { fly } from "svelte/transition";
</script>
<!-- ... -->
<div
animate:flip
class="toast"
style="background: {themes[notification.msg.type]};"
transition:fly={{ y: 128, duration: 500 }}
>
<!-- ... -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment