1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function wheelson(event){
if(document.getElementById('a1').paused){
document.getElementById('a1').play();
}
}
var elmouse=(navigator.userAgent.indexOf("Firefox") != -1) ? 'DOMMouseScroll' : 'mousewheel';
window.addEventListener(elmouse, wheelson, false);
</script>
</head>
<body>
<audio id='a1'>
<source src='PontLevi.ogg' type="audio/ogg">
<source src='PontLevi.mp3' type="audio/mp3">
</audio>
</body>
</html> |
Partager