Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <style type="text/css">
  2. #kol_embed_container {
  3. position:fixed;
  4. bottom:0px;
  5. right:0px;
  6. }
  7. </style>
  8.  
  9. <script type="text/javascript">
  10. $('#kol_embed_container').hide();
  11.  
  12. $(window).scroll(function () {
  13. if ($(window).scrollTop() > $('body').height() / 2) {
  14. $('#kol_embed_container').slideDown('slow');
  15. }
  16. else {
  17. $('#kol_embed_container').slideUp('slow');
  18. }
  19. });
  20. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement