Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <style type="text/css">
  2. #boton{
  3. width: 50px;
  4. height: 30px;
  5. display: block;
  6. margin:30px;
  7. }
  8.  
  9. img{
  10. width: 300px;
  11. height: 200px;
  12. margin:30px;
  13. }
  14. </style>
  15.  
  16. <script type="text/javascript">
  17. var boton = document.getElementById('boton');
  18. boton.onclick = function(){
  19. var imagen = document.getElementById('foto');
  20. imagen.style.display ='none';
  21. }
  22. </script>
  23. </head>
  24. <body>
  25. <button id="boton">Click</button>
  26. <img src="header.jpg" id="foto">
  27. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement