Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $('.element').waypoint(function(direction){
  2. if(direction == 'down'){
  3. $(this).addClass('active');
  4. }else{
  5. $(this).removeClass('active');
  6. }
  7. },{offset:'100%'});
  8.  
  9. .sticky-container.active .stick-me {
  10. position:relative;
  11. }
  12.  
  13. .sticky-container .stick-me {
  14. background: blue;
  15. height: 50px;
  16. position:fixed;
  17. bottom:0;
  18. }
  19.  
  20. .content {
  21. height: 1000px;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement