Guest User

Untitled

a guest
May 27th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. //JAVASCRIPT
  2. <script type="text/javascript">
  3. var $ = function(id)
  4. {
  5. return document.getElementById(id);
  6. };
  7.  
  8. function chPic(id)
  9. {
  10. if (id == '0')
  11. {
  12. $('logo').setAttribute('style', 'background: url(kalo.png) no-repeat top center');
  13. }
  14. };
  15. </script>
  16.  
  17.  
  18.  
  19.  
  20. //TABS
  21. <div id="toptabs">
  22. <p>Change Picture:
  23. <a class="toptab" href="#" onclick="chPic(0)">Bodega Bay</a>
  24. <a class="toptab" href="#" >My Garden</a>
  25. <a class="toptab" href="#">Painting</a>
  26. <a class="toptab" href="#">My House</a></p>
  27. </div>
  28.  
  29.  
  30.  
  31.  
  32. //CSS
  33.  
  34. #logo{
  35. position:relative;
  36. width:900px;
  37. height:300px;
  38. float:left;
  39. background: url(kalobg.gif) no-repeat center;
  40. }
Add Comment
Please, Sign In to add comment