Visualizzazione dei risultati da 1 a 4 su 4

Discussione: E il BIP?

  1. #1

    E il BIP?

    Con frontpage come si fa' a mettere un suono che si sente sui collegamenti ipertestuali o sui bottoni quando si passa col mouse sopra? Tipo per capirsi a sinistra sulle opzioni di sto sito: http://www.boysvicenza.com/

  2. #2
    Complimenti per il link di esempio !

    Il "BIP" è fatto con flash, non con frontpage.

  3. #3
    Si ma col frontpage come posso inserirlo pure io? Un sistema ci sara' penso

  4. #4
    codice:
    <html>
    <head>
    <title>Sound</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <bgsound src="#" id="soundeffect" loop=1 autostart="true" />
    
    <script type="text/javascript">
    
    
    var soundfile="sound.wav" 
    
    function playsound(soundfile){
    if (document.all && document.getElementById){
    document.getElementById("soundeffect").src=soundfile
    }
    }
    
    function bindsound(tag, soundfile, masterElement){
    if (!window.event) return
    var source=event.srcElement
    while (source!=masterElement && source.tagName!="HTML"){
    if (source.tagName==tag.toUpperCase()){
    playsound(soundfile)
    break
    }
    source=source.parentElement
    }
    }
    
    </script>
    </head>
    
    <body bgcolor="#FFFFFF" text="#000000">
    Esempio
    </body>
    </html>

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2026 vBulletin Solutions, Inc. All rights reserved.