Happy Halloween 2021!
I challenged myself and decided to code a tiny project related to Halloween and Canvas!
Confetti π
I was looking toward a way to get a random particles generator in a canvas, and I came across this great tool confetti-js which widely inspired this project.
halloween-2021
Nearly everything stands in the app config:
const app = {
target: 'canvas',
images: ['./images/bat.png', './images/pumpkin.png', './images/sweet.png'],
max: 30,
speed: 3,
width: window.innerWidth,
height: window.innerHeight,
imageMinWidth: 30,
imageMaxWidth: 100,
}
One helpful function:
function getRandomInt(min, max) {
min = Math.ceil(min)
max = Math.floor(max)
return Math.floor(Math.random() * (max - min + 1)) + min
}
Demo and code (which might be frightening π±) are available.
Demo: https://0kyn.github.io/halloween-2021/
Sources: https://github.com/0kyn/halloween-2021
Top comments (2)
Good start! Keep the posts coming
Thanks for kind words! I'll try :)