Показать сообщение отдельно
  #6 (permalink)  
Старый 19.08.2015, 20:16
Интересующийся
Отправить личное сообщение для solunski.d Посмотреть профиль Найти все сообщения от solunski.d
 
Регистрация: 19.08.2015
Сообщений: 24

Дело в том я не еще не бум бум в JS
Вот пытался сделать поднятие вверх, но не работает...
$('.filter_1').scroll(function () {
    if (this.scrollHeight - this.scrollTop === this.clientHeight) {
		$('.filter_other1 span').removeClass('glyphicon-triangle-bottom');
        $('.filter_other1 span').addClass('glyphicon-triangle-top');
		$('.filter_other1').removeClass('bottom');
		$('.filter_other1').addClass('up');
    } else {
		$('.filter_other1 span').removeClass('glyphicon-triangle-top');
		$('.filter_other1 span').addClass('glyphicon-triangle-bottom');
		$('.filter_other1').removeClass('up');
		$('.filter_other1').addClass('bottom');
		
	}
});
if ( $(".filter_other1").hasClass("bottom") ) {
    $('.filter_other1').click(function () {
        $('.filter_1').animate({
            scrollTop: '+=53'
        }, 1000);
    });
} else if ( $(".filter_other1").hasClass("up") ) {
    $('.filter_other1').click(function () {
        $('.filter_1').animate({
            scrollTop: '-53'
        }, 1000);
    });
}
Ответить с цитированием