• Son survol 2

     

    Survolez ce montage, avec son ouvert

    Code

    <p style="font-size: 38pt; color: brown; text-shadow: 1px 1px 2px black; text-align: center;"><a onmouseover="mouseoversound1.playclip()" onmouseout="mouseoversound1.pause()"><img style="border: 6px solid white; border-radius: 150px; box-shadow: 4px 4px black;" src="http://ekladata.com/Orq0NjVWwHoFJTwL_6fySC0Z-YY/5532.jpg" alt="" /></a></p>
    <script>// <![CDATA[
    // Mouseover/ Click sound effect- by JavaScript Kit (www.javascriptkit.com)
    var html5_audiotypes={ //define list of audio file extensions and their associated audio types. Add to it if your specified audio file isn't on this list:
    "mp3": "audio/mpeg",
    "mp4": "audio/mp4",
    "ogg": "audio/ogg",
    "wav": "audio/wav"
    }
    function createsoundbite(sound){
    var html5audio=document.createElement('audio')
    if (html5audio.canPlayType){ //check support for HTML5 audio
    for (var i=0; i<arguments.length; i++){
    var sourceel=document.createElement('source')
    sourceel.setAttribute('src', arguments[i])
    if (arguments[i].match(/\.(\w+)$/i))
    sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
    html5audio.appendChild(sourceel)
    }
    html5audio.load()
    html5audio.playclip=function(){
    html5audio.pause()
    html5audio.currentTime=0
    html5audio.play()
    }
    return html5audio
    }
    else{
    return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}
    }
    }
    var mouseoversound1=createsoundbite("http://ekladata.com/GkRnLQejiHSNcYgE7f4ggKY_MRI/17054.ogg", "http://ekladata.com/hHJfylliWVdPHKEwZMYSzbrPok0/17054.mp3")
    var clicksound1=createsoundbite("click_sound.ogg", "click_sound.mp3")
    // ]]></script>
    Surligné en bleu clair: votre image/ surligné en vert clair, vos adresses musiques (MP3/OGG)