Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1.  
  2. <body>
  3. <img id="zdjid" src="zdj.jpg" alt="Gory" width="500" height="300">
  4.  
  5. <div id="menu" style="display: none;">
  6.   <div id="option1">Photograph</div>
  7.   <div id="option2">Rub belly</div>
  8.   <div id="option3">Feed a fish</div>
  9. </div>
  10.  
  11.  
  12. <script type="text/javascript">
  13. function f1(){
  14. document.getElementById("menu").style.display= 'block';
  15. }
  16. function f2(){
  17. document.getElementById("menu").style.display = 'none';
  18. return false;
  19. }
  20. var zdjecie = document.getElementById("zdjid");
  21. zdjecie.addEventListener('click',f1,false);
  22. zdjecie.addEventListener('contextmenu',f2,false);
  23. </script>
  24.  
  25.  
  26. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement