Efectos JavaScript Gratis
Barra De Noticias
Una barra aparece arriba de la pagina y pasa los mensajes que vos desees.
<marquee id="alertit" style="position:absolute;
left:0px;top:0;background-color:#FFFFE6" onMouseover="this.scrollAmount=1" onMouseout="this.scrollAmount=speed">
</marquee>
<script type="text/javascript">
var themsg='Tu Mensaje Aca. Podes usar HTML. >'
var speed=6 //Velocidad (1-10 o mas)
var loops=2 //Especifica el numero de veces que queres que el mensaje se repita. Pone "infinite" para infinitas veces
function populatescroller()
{
var windowwidth=iecompattest().clientWidth
document.getElementById("alertit").innerHTML=themsg
document.getElementById("alertit").style.width=windowwidth
document.getElementById("alertit").scrollAmount=speed
document.getElementById("alertit").scrollDelay=20
document.getElementById("alertit").loop=loops
document.getElementById("alertit").onfinish=function(){
document.getElementById("alertit").style.visibility="hidden"
}
}
function iecompattest(){
return
(document.compatMode!="BackCompat")?
document.documentElement : document.body
}
if
(document.all && document.getElementById){
window.onload=populatescroller
window.onresize=populatescroller
}
</script>
Buscador Interno De Google
<script type="text/javascript">
var domainroot="URL DE LA PAGINA PRINCIPAL DE TU WEB"
function Gsitesearch(curobj){
curobj.q.value="site:"+domainroot+" "+curobj.qfront.value
}
</script>
<form action="http://www.google.com/search"
method="get"
onSubmit="Gsitesearch(this)">
<p>Buscar:<br />
<input name="q" type="hidden" />
<input name="qfront" type="text" style="width: 180px" />
<input type="submit" value="Buscar" /></p>
</form>
Musica Dentro De Tu Pagina
Copia y pega en las etiquetas <head></head>
<script>
<!--
var musicsrc="URL DEL ARCHIVO DE SONIDO"
if (navigator.appName=="Microsoft Internet Explorer")
document.write
('<bgsound src='+'"'+musicsrc+'"'+'
loop="infinite">')
else
document.write
('<embed src=\"'+musicsrc+'\" hidden="true" border="0" width="20"
height="20" autostart="true"
loop="true">')
//-->
</script>