Advertisement
Guest User

Untitled

a guest
Jul 31st, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <script>
  2. function on1() {
  3. var x = document.getElementById("1");
  4. x.src = "Hover1.png";
  5. x.style.width = "31%";
  6. }
  7. function out1() {
  8. var x = document.getElementById("1");
  9. x.src = "Item1.png";
  10. x.style.width = "30%";
  11. }
  12. </script>
  13. <img src="Item1.png" width="30%" id="1"
  14. onmouseover="on1();"
  15. onmouseout="out1();"
  16. onclick="this.src = 'Desc1.png';">`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement