Este truco lo probé durante un tiempo en mis inicios blogueriles. Me di cuenta que el script tardaba mucho en cargar y que también impedía, (más o menos), que los robots indexaran este espacio. Total, un desastre.

Contra gustos no hay disputa como diría Serrat.

Mensaje de bienvenida en movimiento en la barra de estado del navegador


1. Diseño>Edición de HTML>sin expandir artilugios

2. Control+F y buscamos <head>

3. Debajo de <head> colocamos el script:

<script language="javascript">
var titletext="TEXTO QUE DESEES COLOCAR PARA ANIMAR EL BLOG"; // TITLEBAR TEXT
var repeat=true; // SET TO true TO REPEAT, false TO "TYPE" OUT TITLE ONLY ONCE.
var index=0;
function scrolltitle(){
if(index<=titletext.length){
document.title=titletext.substring(0,index);
index++;
setTimeout('scrolltitle()', 200);
}else{
index=0;
if(repeat)setTimeout('scrolltitle()',1000);
}}
window.onload=function(){
if(!document.layers)setTimeout('scrolltitle()',1000);
}
</script>

Nota:

- Modificar TEXTO QUE DESEES COLOCAR PARA ANIMAR EL BLOG por el que te dé la gana.


La Repanocha es este otro script que muestra el título del blog en movimiento



En Diseño - Elementos de la página - Añadir un gadget HTML/Javascript

<script type="text/JavaScript">
var repeat=1 //enter 0 to not repeat scrolling after 1 run, othersise, enter 1
var title=document.title
var leng=title.length
var start=1
function titlemove() {
titl=title.substring(start, leng) + title.substring(0, start)
document.title=titl
start++
if (start==leng+1) {
start=0

if (repeat==0)
return
}
setTimeout("titlemove()",180)
}
if (document.title)
titlemove()
</script>

Nota:

- Los dos scripts en funcionamiento al mismo tiempo pueden ser apocalípticos y algo mareantes...

- La función setTimeout() sirve para ejecutar una sentencia pasados unos milisegundos. Es decir, se le ordena y espera el tiempo que se le indica para hacerla. El número es variable y a gusto de cada cual.



2 comentarios:

Publicar un comentario

(-^o^-) (^_-) (#^_^#) (ÖoÖ) (*^o^*) (>_<) ( ̄へ ̄)(;_・) (ô_Ó) (O_O) (ˇ~ˇ) (ToT)(Q____Q) ಠ_ಠ (。◕‿◕) [(--)]ZZzzz

- Si el comentario es anónimo hay muchas posibilidades que no se publique.

 


UP