Advertisement
keha76

CTA on Scroll

Nov 11th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.40 KB | None | 0 0
  1. // You need HTML + CSS too, this alone doesn't work!
  2. $(function(){
  3.     $(window.scroll(function(){
  4.         var distanceTop = $('#footer').offset().top - $(window).height();
  5.         if($window).scrollTop() > distanceTop)
  6.             $('#cta').animate({'right':'0px'}, 300);
  7.         else
  8.             $('#cta').stop(true).animate({'right':'-300px'},100);
  9.     }))
  10. });
  11.    
  12. $('#cta .btn-close').bind('click',function(){
  13.     $(this).parent().remove();
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement