PCF 668090
HTML
<p onmouseover="PlaySound('myBabboNatale')" onmouseout="StopSound('myBabboNatale')"> π
</p>
<audio id="myBabboNatale">
<source src="https://mrlab.altervista.org/sounds/how-how-how-babbo.ogg" type="audio/ogg">
</audio>
<p onmouseover="PlaySound('mychristmastree')" onmouseout="StopSound('mychristmastree')"> π </p>
<audio id="mychristmastree">
<source src="https://mrlab.altervista.org/sounds/the-bells-of-santa-claus.ogg" type="audio/ogg">
</audio>
<p onmouseover="PlaySound('mychristmasgift')" onmouseout="StopSound('mychristmasgift')"> π </p>
<audio id="mychristmasgift">
<source src="https://mrlab.altervista.org/sounds/toy-singing-santa-claus-is-coming-to-town.ogg" type="audio/ogg">
</audio>
JavaScript
function PlaySound(soundobj) {
var thissound = document.getElementById(soundobj);
thissound.play();
}
function StopSound(soundobj) {
var thissound = document.getElementById(soundobj);
thissound.pause();
thissound.currentTime = 0;
}