scrimba
Note at 0:01 (Clone)
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:01 (Clone)
AboutCommentsNotes
Note at 0:01 (Clone)
Expand for more info
index.js
run
preview
console
const crew = document.getElementById("crew")
const btn = document.getElementById("btn")
const audio = new Audio("wee-sound-effect.mp3")

// Task:
// - Write a function to launch the sleigh!
// - See CSS for more tasks.

btn.addEventListener('click',() => {
audio.play();
crew.classList.add('slide-out-left')
})

// Stretch goals:
// - Add a cheering sound when the sleigh takes off.
// - Add a countdown to the launch time.
Console
/index.html
LIVE