Просто фрагмент кода jQuery для захвата горизонтальной прокрутки.
//capture horizontal scroll $(window).bind('scroll', function() { //check if it's hit the leftmost scroll point if ($(document).scrollLeft() == 0) { //scroll horizontal } });
Просто фрагмент кода jQuery для захвата горизонтальной прокрутки.
//capture horizontal scroll $(window).bind('scroll', function() { //check if it's hit the leftmost scroll point if ($(document).scrollLeft() == 0) { //scroll horizontal } });