Deividy Posted May 31, 2004 Report Share Posted May 31, 2004 eu peguei esse código postado pelo Jissa<HTML><HEAD><script LANGUAGE="Javascript1.1">function um() { document.images["imagem"].src=Imagem1.gif" } function dois() { document.images["imagem].src="Imagem2.gif"} </SCRIPT></HEAD><BODY><A HREF="#" onmouseOver="um();" onmouseOut="dois();"> <IMG SRC="imagem1.gif" name="imagem" width=100 height=50 border=0> </A></BODY></HTML> só que eu queria que isso fosse com cor de fundo como eu faço isso Quote Link to comment Share on other sites More sharing options...
0 Fabi SP Posted May 31, 2004 Report Share Posted May 31, 2004 Não entendi bem... você quer que as imagens tenham cor de fundo?Pelo que entendi, isso é um script para botões rollover... você precisa ter dois arquivos diferentes com "comportamentos" de mouseover e mouseout (neste caso, cores diferentes). Quote Link to comment Share on other sites More sharing options...
0 leo71 Posted June 1, 2004 Report Share Posted June 1, 2004 testa assim...<script>function omv(){window.bgcolor="COR EM HEX ou INGLES"window.background="ligado.jpg" // Caso for com Foto}function omo(){window.bgcolor="COR EM HEX ou INGLES"window.background="desligado.jpg" // Caso for com Foto}</SCRIPT><A HREF="algo_html" ONMOUSEOVER="omv()" ONMOUSEOUT="omo()">leo71@MSN.com.br Quote Link to comment Share on other sites More sharing options...
0 Deividy Posted June 1, 2004 Author Report Share Posted June 1, 2004 eehe eu não presciso dessa imagemeu quero fazer isso com texto!por isso queria saber como alterar o fundo tambem tipo o eu tenho uma tabela e um link ai eu passo o mouse em cima muda o fundo e o textoé isso Quote Link to comment Share on other sites More sharing options...
0 Fabi SP Posted June 1, 2004 Report Share Posted June 1, 2004 Para mudar a cor de fundo com CSS:background-color: #codigodacor; Para mudar o estilo do texto: text-decoration: underline;*Aceita "none", "underline", "overline", "line-through" e "blink". Quote Link to comment Share on other sites More sharing options...
0 Deividy Posted June 1, 2004 Author Report Share Posted June 1, 2004 Para mudar a cor de fundo com CSS:background-color: #codigodacor; Para mudar o estilo do texto: text-decoration: underline;*Aceita "none", "underline", "overline", "line-through" e "blink". não é isso!e on mouse up e on mouse dowm Quote Link to comment Share on other sites More sharing options...
0 >>FD00J8<< Posted June 1, 2004 Report Share Posted June 1, 2004 Tenta isso ae!! <script language="JavaScript"> function Colorir(Obj){ Obj.style.backgroundColor = "#000444"; Obj.style.color = "#5CF2FF" } </script> No Botão coloca isso: <input type="button" class=botao onMouseOver="Colorir(this)" value="Voltar"> Se isso resolver posta ai!!!! Quote Link to comment Share on other sites More sharing options...
0 Deividy Posted June 1, 2004 Author Report Share Posted June 1, 2004 botão que eu digo é um texto com link! Quote Link to comment Share on other sites More sharing options...
0 Fabi SP Posted June 1, 2004 Report Share Posted June 1, 2004 Então é assim:a.meuLink { background-color: #codigoDaCor; text-decoration: underline; } a.meuLink:hover { background-color: #codigoDaCor; text-decoration: none; } E no link, coloque a chamada para a classe: <a href="page.html" class="meuLink">Meu Link</a> Quote Link to comment Share on other sites More sharing options...
0 Deividy Posted June 1, 2004 Author Report Share Posted June 1, 2004 isso valeuobrigado Quote Link to comment Share on other sites More sharing options...
0 Fabi SP Posted June 1, 2004 Report Share Posted June 1, 2004 Demorou, mas consegui entender o que você precisava, risos...Até mais, Quote Link to comment Share on other sites More sharing options...
Question
Deividy
eu peguei esse código postado pelo Jissa
<HTML>
<HEAD>
<script LANGUAGE="Javascript1.1">
function um() {
document.images["imagem"].src=Imagem1.gif"
}
function dois() {
document.images["imagem].src="Imagem2.gif"
}
</SCRIPT>
</HEAD>
<BODY>
<A HREF="#" onmouseOver="um();" onmouseOut="dois();">
<IMG SRC="imagem1.gif" name="imagem" width=100 height=50 border=0> </A>
</BODY>
</HTML>
só que eu queria que isso fosse com cor de fundo como eu faço isso
Link to comment
Share on other sites
10 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.