Skip to content

Instantly share code, notes, and snippets.

@Reine0017
Created April 9, 2022 04:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Reine0017/5c09fddd39deb590e2518224508d950e to your computer and use it in GitHub Desktop.
Save Reine0017/5c09fddd39deb590e2518224508d950e to your computer and use it in GitHub Desktop.
HTML of the confetti-button
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<title>JavaScript Confetti Example</title>
<link rel="stylesheet" href="styles.css">
<script src="confetti-button.js" defer></script> <!--Executes last because of the defer-->
<script src="https://cdn.jsdelivr.net/npm/js-confetti@latest/dist/js-confetti.browser.js"></script> <!--Executes first-->
</head>
<body>
<button class="confettiButton">Click me for confetti!</button> <!--Executes before confetti-button.js-->
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment