Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. body.bg-color {
  2. background-color:red;
  3. }
  4. body.bg-img {
  5. background: url(../images/bg.jpg) no-repeat center 0 fixed;
  6. -webkit-background-size: cover;
  7. -moz-background-size: cover;
  8. -o-background-size: cover;
  9. background-size: cover;
  10. }
  11.  
  12. $(document).ready(function(){
  13.  
  14. $('body').addClass('bg-color');
  15. $('.element,#content1,#content2').hide();
  16.  
  17. $("#link1").click(function(){
  18. $('#wrapper').hide();
  19. $('body').removeClass('bg-color').fadeOut();
  20. $('body').addClass('bg-img').fadeIn();
  21. });
  22.  
  23. $("#link2").click(function(){
  24. $('#wrapper').show();
  25. $('body').removeClass('bg-img').fadeOut();
  26. $('body').addClass('bg-color').fadeIn();
  27. });
  28. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement