Показать сообщение отдельно
  #23 (permalink)  
Старый 20.08.2015, 02:43
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

solunski.d,

.filter_other1{
     background-color:  #0000FF;

}
.test.filter_other1{
     background-color:  #228B22;

}

$(function(){
    var $ul = $('.filter_1'),
        $button = $('.filter_other1'),
        n = true;
   $ul.scroll(function () {
    if (this.scrollHeight - this.scrollTop === this.clientHeight || !this.scrollTop) {
         n = !n;$button.val( n ? 'вниз':'вверх');
         $button.toggleClass('test', !n);
    }
});

   $button.click(function () {
        $ul.stop().animate({
            scrollTop: n ? '+=100' : '-=100'
        }, 1000);
    });
});
Ответить с цитированием