Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var achor = $('#about-ph').offset();
  2. var fixed = $('#selma');
  3. console.log(achor.top);
  4. $(window).on("scroll", function() {
  5. if ($(this).scrollTop() > achor.top) {
  6. $("#selma").css("position: fixed")
  7. } else {
  8. $("#selma").css("position: static")
  9. }
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement