This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(async function autoUnfollow() { | |
/** | |
* Función que inicia la animación de confeti. | |
*/ | |
function confettiAnimation() { | |
const canvas = document.createElement('canvas'); | |
canvas.style.position = 'fixed'; | |
canvas.style.top = '0'; | |
canvas.style.left = '0'; | |
canvas.style.width = '100%'; |