We've been asked to implement mouse sound effects for our users. Because, you know, clicking and scrolling can get boring without the sweet sound of BLERPS and CHIRPS. We're currently in the process of deciding between a Mac-like Chirp and a Windows-like Squeak.
if (user_clicks) {
// Mac-like Chirp
document.playSound("chirp.wav");
} else {
// Windows-like Squeak
document.playSound("squeak.wav");
}
We're also considering adding a Sound Effects Options page where users can customize their experience.