Guest User

Untitled

a guest
Jun 24th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>DOM-scripting</title>
  5.         <meta charset="utf-8"/>
  6.         <style type="text/css">
  7.             <!--
  8.                 body    {   background-color: #B478ED;
  9.                         }
  10.             -->
  11.         </style>
  12.         <script type="text/javascript">
  13.             function imageBig(x) {
  14.                 document.getElementById(x).heigth="300";
  15.                 document.getElementById(x).width="300";
  16.             }
  17.            
  18.             function imageSmall(x) {
  19.                 document.getElementById(x).heigth="256";
  20.                 document.getElementById(x).widht="256";
  21.             }
  22.         </script>
  23.     </head>
  24.     <body>
  25.         <table>
  26.             <tr>
  27.                 <td>
  28.                     <img src="img/elephant.png" id="elephant" alt="Olifant" ondblclick="imageBig(this.id)" onclick="imageSmall(this.id)"/>
  29.                 </td>
  30.                 <td>
  31.                     <img src="img/rhino.png" id="rhino" alt="Neushoorn" ondblclick="imageBig(this.id)" onclick="imageSmall(this.id)"/>
  32.                 </td>
  33.                 <td>
  34.                     <img src="img/mouse.png" id="mouse" alt="Muis" ondblclick="imageBig(this.id)" onclick="imageSmall(this.id)"/>
  35.                 </td>
  36.                 <td>
  37.                     <img src="img/rabbit.png" id="rabbit" alt="Konijn" ondblclick="imageBig(this.id)" onclick="imageSmall(this.id)"/>
  38.                 </td>
  39.             </tr>
  40.         </table>
  41.     </body>
  42. </html>
Add Comment
Please, Sign In to add comment