A Pen by Wictor Sorgenfrei

PHOTO EMBED

Thu Jul 20 2023 13:57:56 GMT+0000 (Coordinated Universal Time)

Saved by @wsorgenfri #undefined

// JavaScript to show the hidden message and play the Spotify song

function showMessage() {

  const box = document.querySelector('.hidden-box');

  box.classList.toggle('clicked');

​

  // Toggle the hidden class to hide/show the back of the box

  const back = document.querySelector('.box-back');

  back.classList.toggle('hidden');

​

  // Play the Spotify song

  const audio = document.getElementById('spotifyAudio');

  audio.play();

}

​
content_copyCOPY

https://codepen.io/Wictor-Sorgenfrei/pen/oNQypGY