Guest User

Untitled

a guest
Dec 12th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $(window).on('load', function() {
  2. $(window).on("scroll touchmove", function () {
  3. $('.wrapper').toggleClass('tiny', $(document).scrollTop() > 0);
  4. });
  5. });
  6.  
  7. .wrapper {
  8. grid-template-rows: 80px calc(75vh - 80px) 25vh 80px;
  9. -o-transition: all 0.5s;
  10. -moz-transition: all 0.5s;
  11. -webkit-transition: all 0.5s;
  12. transition: all 0.5s;
  13. }
  14. .tiny {
  15. grid-template-rows: 40px calc(75vh - 40px) 25vh 80px;
  16. }
Add Comment
Please, Sign In to add comment