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

serrrgggeee,
(function($) {
$.fn.scrollbox = function(config) {
  //default config
  defConfig = {
    step: 50,                // Distance of each single step (in pixels)
    speed: 32,              // Delay after each single step (in milliseconds)
    switchItems: 1,         // Items to switch after each scroll event
    direction: 'vertical',
    distance: 'auto',
  };
  config = $.extend(defConfig, config);
  config.scrollOffset = config.direction === 'vertical' ? 'scrollTop' : 'scrollLeft';
  return this.each(function() {
    var container = $(this),
        containerUL,
        nextScrollId = null,
        forward,
        scrollForward,
    containerUL = container.children('ul:first-child');
    scrollForward = function() {

                containerUL.children('li').removeClass('scale80 scale90 scale100 leftSide rightSide');
				containerUL.children('li:nth-child(1)').addClass('scale80 leftSide');
				containerUL.children('li:nth-child(2)').addClass('scale90 leftSide');
				containerUL.children('li:nth-child(3)').addClass('scale100');
				containerUL.children('li:nth-child(4)').addClass('scale90 rightSide');
				containerUL.children('li:nth-child(5)').addClass('scale80 rightSide');

    };
    forward = function() {
      scrollingId = setInterval(scrollForward, config.speed);
    };
    // bind events for container
    container.bind('forward', function() { clearTimeout(nextScrollId);containerUL.append(containerUL.children('li:nth-child(1)')) ; forward();});
    container.bind('backward', function() { clearTimeout(nextScrollId);containerUL.prepend(containerUL.children('li:nth-child(5)')) ; forward();});
  });
};
}(jQuery));

Последний раз редактировалось рони, 13.10.2014 в 14:51.
Ответить с цитированием