Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. window.onscroll = function() {
  2. if (window.pageYOffset >= 404){
  3. $('.box-carrinho, .categories-menu').css({position: 'fixed', top: '30px'});
  4. }else{
  5. $('.box-carrinho, .categories-menu').css({position: 'static', top: '0'});
  6. }
  7. }
  8.  
  9. <div class="row">
  10. <div class="... categoria">...</div>
  11. <div class="... produtos">...</div>
  12. <div class="... carrinho">...</div>
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement