Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <script type='text/javascript'>
  2. function CenterItem(theItem){
  3. var winHeight=$(window).height();
  4. var windowMiddle=winHeight/2;
  5. var itemMiddle=$(theItem).height()/2;
  6. var theMiddle=windowMiddle-itemMiddle;
  7. if(winHeight>$(theItem).height()){ //vertical
  8. $(theItem).css('top',theMiddle);
  9. } else {
  10. $(theItem).css('top','0');
  11. }
  12. }
  13.  
  14. $(document).ready(function() {
  15. CenterItem('#second .bg');
  16. });
  17. $(window).resize(function() {
  18. CenterItem('#second .bg');
  19. });
  20.  
  21. </script>
  22.  
  23. <div id="second">
  24. <div class="story"><div class="bg"></div>
  25. </div> <!--.story-->
  26. </div> <!--#second-->
  27.  
  28. #second .bg{
  29. background: url(images/logo.png) 50% 0 no-repeat fixed ;
  30. height: 380px;
  31. margin: 0 auto;
  32. padding: 0;
  33. position: absolute;
  34. background-position: center center;
  35. width: 960px;
  36. z-index: 200;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement