Jump to content
Fórum Script Brasil
  • 0

Como Fazer?


taudujas

Question

6 answers to this question

Recommended Posts

  • 0

amigo taudujas

isso é em js vou transferir pra lá,

mas se não me engano eu tenho um script desse, vou ver se acho enquanto isso na sala de justiça..............................

transferido cool.gif

Link to comment
Share on other sites

  • 0

achei um similar, nele fica passando o tempo todo as noticias, ae tem botao parar e continuar...

codigo:

function init() {
	DynLayerInit()
	windowHeight = SW.h
	contentHeight = (is.ns)? SC.doc.height : SC.event.scrollHeight
	offsetHeight = contentHeight - windowHeight
	abaixo()
}

function rola_acima () {
	if (SC.y < 0) SC.moveBy(0,2)
}

function acima() {
	clearInterval(contador)
	contador=setInterval("rola_acima()",60)
}
  
function rola_abaixo() {
	if (SC.y > -offsetHeight){ 
	SC.moveBy(0,-2)
	if (SC.y <= -offsetHeight){
  SC.y = 0}
  }
}

function abaixo() {
	contador=setInterval("rola_abaixo()",100)
}

function para() {
	clearInterval(contador)
	init()
}

function parada() {
	clearInterval(contador)
}
ae nos links: parar:
<a href=# onMouseOver=parada() onMouseOut=para()>
voltar:
<a href=# onMouseOver=acima() onMouseOut=para()>

É isso

Espero que ajude

Abracos

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.9k
×
×
  • Create New...