A semantic search engine for source code https://bitshift.benkurtovic.com/
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

16 Zeilen
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. });