Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

graffdesign

redirecionamento

Recommended Posts

olá galéra será que alguem sabe como fazer com que minha pagina depois de alguns segundos seja redirecionada para outra URL, se possível em java script.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Com Java Script eu não sei, mas com o dreamweaver você pode usar a meta tag refresh.. ou o behavior goto url do proprio dreamweaver...

Compartilhar este post


Link para o post
Compartilhar em outros sites

Troca a meta tag da página por essa ai:<meta http-equiv="refresh" content="1; url=http://www.suaurl.com.br">content é o tempo em segundos em que o url da página demora pra mudar.

Compartilhar este post


Link para o post
Compartilhar em outros sites

Seguinte,

Experimente esses dois codigos:

 

<div id="splashcontainer" width="200"></div>

<layer id="splashcontainerns" width="200"></layer>

<script language="JavaScript">

var intervals=4000

var targetdestination="menu.html"

var splashmessage=new Array()

var openingtags='<font face="Arial Black" size="3" color="red"><i>'

splashmessage[0]="Aguarde..."

splashmessage[6]="Você está sendo redirecionado..."

var closingtags='</font>'

var i=0

function displaysplash_ie(){

if (i<splashmessage.length){

sc_ie.style.visibility="hidden"

sc_ie.innerHTML='<b><center>'+openingtags+splashmessage+closingtags+'</center></b>'

sc_ie.style.top=document.body.scrollTop+document.body.clientHeight/2-sc_ie.offsetHeight/2

sc_ie.style.visibility="visible"

i++

}

else{

window.location=targetdestination

return

}

setTimeout("displaysplash_ie()",intervals)

}

function displaysplash_ns(){

if (i<splashmessage.length){

sc_ns.visibility="hide"

sc_ns.document.write('<b>'+openingtags+splashmessage+closingtags+'</b>')

sc_ns.document.close()

sc_ns.left=pageXOffset+window.innerWidth/2-sc_ns.document.width/2

sc_ns.top=pageYOffset+window.innerHeight/2-sc_ns.document.height/2

sc_ns.visibility="show"

i++

}

else{

window.location=targetdestination

return

}

setTimeout("displaysplash_ns()",intervals)

}

function positionsplashcontainer(){

if (document.all){

sc_ie=document.all.splashcontainer

sc_ie.style.left=document.body.scrollLeft+document.body.clientWidth/2-sc_ie.

offsetWidth/2

sc_ie.style.top=document.body.scrollTop+document.body.clientHeight/2-sc_ie.offsetHeight/2

displaysplash_ie()

}

else if (document.layers){

sc_ns=document.splashcontainerns

sc_ns.left=pageXOffset+window.innerWidth/2-sc_ns.document.width/2

sc_ns.top=pageYOffset+window.innerHeight/2-sc_ns.document.height/2

sc_ns.visibility="show"

displaysplash_ns()

}

else

window.location=targetdestination

}

window.onload=positionsplashcontainer

</script>

 

 

 

Agora, o outro codigo:

<div id="splashcontainer" style="position:absolute;width:700; left: 380px"></div>

 

<layer id="splashcontainerns" width=790 height="19" left="396"></layer>

 

 

<script>

 

var intervals=250

var targetdestination="menu.htm"

 

var splashmessage=new Array()

var openingtags='<font face="Verdana" size="4" color=#333333><b>'

splashmessage[0]="carregando . 5%"

splashmessage[1]="carregando .. 10%"

splashmessage[2]="carregando ... 15%"

splashmessage[3]="carregando .... 20%"

splashmessage[4]="carregando ..... 25%"

splashmessage[5]="carregando ...... 30%"

splashmessage[6]="carregando ....... 35%"

splashmessage[7]="carregando ........ 40%"

splashmessage[8]="carregando ......... 45%"

splashmessage[9]="carregando .......... 50%"

splashmessage[10]="carregando ........... 55%"

splashmessage[11]="carregando ............ 60%"

splashmessage[12]="carregando ............. 65%"

splashmessage[13]="carregando .............. 70%"

splashmessage[14]="carregando ............... 75%"

splashmessage[15]="carregando ................ 80%"

splashmessage[16]="carregando ................. 85%"

splashmessage[17]="carregando .................. 90%"

splashmessage[18]="carregando ................... 95%"

splashmessage[19]="carregando .................... 100%"

splashmessage[20]="<= Bem vindo ao site do Colchões Trorion =>"

splashmessage[21]="<=<= Bem vindo ao site do Colchões Trorion =>=>"

splashmessage[22]="<=<=<= Bem vindo ao site do Colchões Trorion =>=>=>"

splashmessage[23]="<=<=<=<= Bem vindo ao site do Colchões Trorion =>=>=>=>"

var closingtags='</font>'

 

var i=0

 

function displaysplash_ie(){

if (i<splashmessage.length){

sc_ie.style.visibility="hidden"

sc_ie.innerHTML='<b><center>'+openingtags+splashmessage+closingtags+'</center></b>'

sc_ie.style.top=document.body.scrollTop+document.body.clientHeight/2-sc_ie.offsetHeight/2

sc_ie.style.visibility="visible"

i++

}

else{

window.location=targetdestination

return

}

setTimeout("displaysplash_ie()",intervals)

}

 

function displaysplash_ns(){

if (i<splashmessage.length){

sc_ns.visibility="hide"

sc_ns.document.write('<b>'+openingtags+splashmessage+closingtags+'</b>')

sc_ns.document.close()

 

sc_ns.left=pageXOffset+window.innerWidth/2-sc_ns.document.width/2

sc_ns.top=pageYOffset+window.innerHeight/2-sc_ns.document.height/2

 

sc_ns.visibility="show"

i++

}

else{

window.location=targetdestination

return

}

setTimeout("displaysplash_ns()",intervals)

}

 

 

 

function positionsplashcontainer(){

if (document.all){

sc_ie=document.all.splashcontainer

sc_ie.style.left=document.body.scrollLeft+document.body.clientWidth/2-sc_ie.offsetWidth/2

sc_ie.style.top=document.body.scrollTop+document.body.clientHeight/2-sc_ie.offsetHeight/2

displaysplash_ie()

}

else if (document.layers){

sc_ns=document.splashcontainerns

sc_ns.left=pageXOffset+window.innerWidth/2-sc_ns.document.width/2

sc_ns.top=pageYOffset+window.innerHeight/2-sc_ns.document.height/2

sc_ns.visibility="show"

displaysplash_ns()

}

else

window.location=targetdestination

}

window.onload=positionsplashcontainer

 

</script>

 

 

[]s

Rodney

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.