UNPKG

snack.js

Version:

Lightweight toast notifications module

21 lines (16 loc) 428 B
<!doctype html> <head> <title>Snacks</title> </head> <body> <div class="test"></div> <script src="../../dist/snack.js"></script> <script> var snack = new Snack(); var snack2 = new Snack({domParent: document.querySelector('.test')}); snack.show('First, container appended to body', 1000); setTimeout(function () { snack2.show('Second, different dom parent', 2000); }, 3000); </script> </body>