A semantic search engine for source code https://bitshift.benkurtovic.com/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

16 строки
384 B

  1. var lastVertPos = $(window).scrollTop();
  2. function parallax(){
  3. var currVertPos = $(window).scrollTop();
  4. var delta = currVertPos - lastVertPos;
  5. $(".bg").each(function(){
  6. $(this).css("top", parseFloat($(this).css("top")) -
  7. delta * $(this).attr("speed") + "px");
  8. });
  9. lastVertPos = currVertPos;
  10. }
  11. $(window).scroll(function(e){
  12. parallax();
  13. });