Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <style>
  2. img{
  3. width: 6%
  4. }
  5. </style>
  6. </head>
  7.  
  8. <body>
  9. <img src="Bulbasaur_XY.gif" id="i">
  10.  
  11. <script>
  12. var imagem = document.getElementById('i')
  13. imagem.addEventListener('mouseenter', entrar)
  14. imagem.addEventListener('mouseout',sair)
  15.  
  16. function entrar(){
  17. document.getElementById('i').src="Bulbasaur_XY_AttackAnimation_Sprite (1).gif"
  18. }
  19. function sair(){
  20. document.getElementById('i').src="Bulbasaur_XY.gif"
  21. }
  22. </script>
  23. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement