Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
446
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <div id="mobile-phone" class="mobile-footer-link container">
  2. <div class="mobile-phone-icon">
  3. <a href="tel:+555555555">
  4. <span class="kwicon-fa-phone"></span>
  5. </a>
  6. </div>
  7. </div>
  8. <div id="mobile-contact" class="mobile-footer-link container">
  9. <div class="mobile-contact-icon">
  10. <a href="mailto:company@mail.dk">
  11. <span class="kwicon-fa-envelope"></span>
  12. </a>
  13. </div>
  14. </div>
  15.  
  16. jQuery(window).load(function ($) {
  17. "use strict";
  18.  
  19. var prev = 0;
  20. var $window = jQuery(window);
  21. var nav = jQuery('.mobile-footer-link');
  22.  
  23. $window.on('scroll', function(){
  24. var scrollTop = $window.scrollTop();
  25. nav.toggleClass('nav-down', scrollTop > prev);
  26. prev = scrollTop;
  27. });
  28.  
  29. });
  30.  
  31. .nav-down {
  32. bottom: -115px;
  33. }
  34.  
  35. .mobile-footer-link {
  36. position: fixed;
  37. bottom: 15px;
  38. transition: bottom 0.2s ease-in-out;
  39. .... [rest edited out]
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement