Advertisement
PayneLess_Designs

PayneLess Designs - Mouseover - Simple JS (New Version)

Dec 6th, 2011
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.87 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
  3. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  4. <title>Mouseover - Simple JS</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
  7. <meta name="author" content="Ron" />
  8. <meta name="date" content="3/10/2009" />
  9. <meta name="copyright" content="PayneLess Designs" />
  10. <!-- <link href="A]css_page_designs.css" rel="stylesheet" type="text/css" /> -->
  11. <style type="text/css">
  12. a img { border: 0; }
  13. #wrap {
  14. width: 960px;
  15. margin: 0 auto;
  16. }
  17.  
  18. h1 { text-align: center; }
  19.  
  20. p.image { width: 150px; margin: 0 auto; }
  21.  
  22. pre {
  23. padding: 10px;
  24. font-size: .5em;
  25. color: #ff0;
  26. line-height: 2em;
  27. background: #000;
  28. </style>
  29. </head>
  30. <body>
  31. <div id="wrap">
  32. <h1>Mouseover - Simple JS</h1>
  33.  
  34. <pre>
  35. &lt;img style="width: XXpx; height: YYpx; border: 0;" src="image1.gif" onmouseover="this.src='image2.gif'" onmouseout="this.src='image1.gif'"
  36. alt="" />
  37. </pre>
  38. <p class="image"><img style="width: 300px; height: 206px;" src="http://i.imgur.com/eKma0.jpg" onmouseover="this.src='http://i.imgur.com/nbMfD.jpg'" onmouseout="this.src='http://i.imgur.com/eKma0.jpg'" alt="" /></p>
  39.  
  40. <h3>As a Link:</h3>
  41.  
  42. <pre>
  43. &lt;a href="http://Google.com/" title="Google">&lt;img style="width: XXpx; height: YYpx; border: 0;" src="image1.gif"
  44. onmouseover="this.src='image2.gif'" onmouseout="this.src='image1.gif'" alt="" />&lt;/a>
  45. </pre>
  46.  
  47. <p class="image"><a href="http://PayneLessDesigns.com/" title="Google"><img style="width: 300px; height: 206px;"src="http://i.imgur.com/eKma0.jpg" onmouseover="this.src='http://i.imgur.com/nbMfD.jpg'" onmouseout="this.src='http://i.imgur.com/eKma0.jpg'" alt="" /></a></p>
  48. </div>
  49. </body></html>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement