Foros del Web » Programando para Internet » Javascript »

script especial??

Estas en el tema de script especial?? en el foro de Javascript en Foros del Web. Habra algun script para poner sonido midi de fondo en la pagina y que sea rotativo, es decir que cada vez que una persona entre ...
  #1 (permalink)  
Antiguo 22/04/2002, 00:05
 
Fecha de Ingreso: mayo-2001
Mensajes: 57
Antigüedad: 23 años
Puntos: 1
script especial??

Habra algun script para poner sonido midi de fondo en la pagina y que sea rotativo, es decir que cada vez que una persona entre a la web escuche una diferente cancion (midi)
he estado buscando y no encuentro nada por estilo, os agradeceria me dijeran si es posible o no, para ya no buscar mas, de antemano gracias. :cantar:
<a href='ir.asp?http://galeon.com/nuevalokinos/menu.html' target='_blank'>http://galeon.com/nuevalokinos/menu.html...</a>
  #2 (permalink)  
Antiguo 22/04/2002, 03:57
 
Fecha de Ingreso: marzo-2002
Mensajes: 257
Antigüedad: 22 años, 1 mes
Puntos: 0
Re: script especial??

¡ Hola elunicoNEO !

Aqui hay uno bastante clasico, pero muy funcional, y creo te servira más alla de tus necesidades.

Código:
 &lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;BODY&gt;
&lt;?php include &quot;../../../head.php&quot;; ?&gt;
&lt;p&gt;
This script will allow you to setup a Random MIDI Jukebox.
&lt;p&gt;
&lt;!-- INSTALLATION OF AUTOMIDI --&gt;
&lt;!-- Step 1 add the script below to your page --&gt;
&lt;!-- Step 2 edit the midi names to use your own files --&gt;

&lt;SCRIPT LANGUAGE=&quot;JavaScript&quot;&gt;
// Designed by Ray Rarey ([email protected]) //
// On February 6th, 1997 //
// You must ask before you use this script //

song = new Array(10);
title = new Array(10);
song[0] ='everlong.mid'
song[1] ='niceshot.mid'
song[2] ='life.mid'
song[3] ='polly.mid'
song[4] ='fly.mid'
song[5] ='damnit.mid'
song[6] ='short.mid'
song[7] ='anarchy.mid'
song[8] ='mable.mid'
song[9] = 'sellout.mid'
song[10] = 'govt.mid'

title[0] = 'Everlong'
title[1] = 'Hey Man Nice Shot'
title[2] = 'Meaning Of Life'
title[3] = 'Polly'
title[4] = 'Fly'
title[5] = 'Damn It'
title[6] = &quot;Short On Ideas&quot;
title[7] = 'Anarchy in the UK'
title[8] = 'Mable'
title[9] = &quot;Sellout&quot;
title[10] = 'You are the Government'

index = Math.floor(Math.random() * song.length);document.write(&quot;&lt;DL&gt;\n&quot;);
document.write(&quot;&lt;EMBED SRC=&quot;+song[index]+&quot; width=200 height=55 autostart=true loop=infinite BGCOLOR='#000000'&quot;);
document.write(' TEXT=&quot;#FFFFFF&quot;&gt;');
document.write(&quot;&lt;BR&gt;&quot;);
document.write(&quot;The randomly selected song you are listening to is: &quot;);
document.write(&quot;&lt;font size=4 color=red&gt;&quot;);
document.write(title[index]);
document.write(&quot;&lt;/font&gt;&quot;)
document.write(&quot;&lt;/DL&gt;\n&quot;);
&lt;/SCRIPT&gt;&lt;P&gt;
&lt;/body&gt;
&lt;/html&gt;
¡ Servido !

¡Suerte!
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 09:15.