🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

scrPosition.js is an ultra-lightweight jQuery plugin to check if you scroll down or scroll up the web page.

scrolling

Documentation

scrPosition.js

scrPosition, jquery eklentisidir. Jquery'de seçtiğiniz elementin scroll'nu oynattığınızda "up" veya "down" verilerini callback fonksiyonuna parametre gönderiyor.

Kullanımı aşağıdaki gibidir.

<script type="text/javascript" src="scrPosition.js"></script>
<script type="text/javascript">     $(function(){       $(window).scrPosition(function(a){         if(a == "up"){           $("header").removeClass("fixed");         }else{            $("header").addClass("fixed");         }       });     }); </script>

You May Also Like