Лучший Ответ Sliapy , 11 June 2013 - 17:26
Отвечу на Ваш такой древний вопрос, если еще интересно. Сегодня, в порядке эксперимента решил сделать на одном из сайтов такой скролл.
Оказалось - дело 5 минут.
Качаем и подключаем - http://www.fieg.nl/i...a-jquery-plugin
Код вызова плагина у меня выглядит так:
<script>
jQuery.ias({
container : ".items",
// Enter the selector of the element containing
// your items that you want to paginate.
item : ".width50",
// Enter the selector of the element that each
// item has. Make sure the elements are inside
// the container element.
pagination : ".pagination",
// Enter the selector of the element that contains
// your regular pagination links, like next,
// previous and the page numbers. This element
// will be hidden when IAS loads.
next : "a.next",
// Enter the selector of the link element that
// links to the next page. The href attribute
// of this element will be used to get the items
// from the next page.
loader : "images/loader.gif"
// Enter the url to the loader image. This image
// will be displayed when the next page with items
// is loaded via AJAX.
});
</script>
Селекторы смотрите сами. Например, вместо ".width50" может быть другой класс айтема.
Ну и как бы все
