Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. $(document).ready(function(){
  2. "use strict";
  3.  
  4. var windowHeight = $(window).height();
  5. var homePageHeight = $('#main').height();
  6.  
  7. if (windowHeight >= homePageHeight){
  8. $('#main').css("padding-top", (((windowHeight-homePageHeight)/2))-130);
  9. $('#main').css("padding-bottom", (((windowHeight-homePageHeight)/2))-130);
  10. }
  11.  
  12. $(window).resize(function() {
  13. var windowHeight = $(window).height();
  14. var homePageHeight = $('#main').height();
  15.  
  16. if (windowHeight >= homePageHeight){
  17. $('#main').css("padding-top", ((windowHeight-homePageHeight)/2));
  18. $('#main').css("padding-bottom", ((windowHeight-homePageHeight)/2));
  19. }
  20. });
  21.  
  22. <section id="main">
  23. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement