Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script language="javascript">
- <!--
- function aumenta(obj){
- obj.height=obj.height*2;
- obj.width=obj.width*2;
- }
- function diminui(obj){
- obj.height=obj.height/2;
- obj.width=obj.width/2;
- }
- //-->
- </script>
- <title>Aumentar o tamanho de uma imagem ao passar o mouse</title>
- </head>
- <body>
- <center>
- <p><img src="http://www.codigofonte.com.br/img/logo.gif" width='258' height='45' alt="CodigoFonte.com.br" onMouseOver="aumenta(this)" onMouseOut="diminui(this)">
- </center>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment