xxxxxxxxxx
26
let mySound;
function preload() {
mySound = loadSound("melody.mp3");
}
function setup() {
createCanvas(400, 200);
textAlign(CENTER, CENTER);
textSize(16);
fill(255);
}
function draw() {
background(50);
text("Click to play/pause the sound", width / 2, height / 2);
}
function mousePressed() {
if (mySound.isPlaying()) {
mySound.pause();
} else {
mySound.play();
}
}