Я разместил демо для вас:)
Я не смог заставить ваш код работать с демо , но первое, что нужно изменить, это все права слева. Нет такой вещи как scrollRight
. Вот только первая функция в коде с исправленными проблемами.
// function to make the thumbs menu scrollable
function buildThumbs($elem){
var $wrapper = $elem.next();
var $menu = $wrapper.find('.sc_menu');
var inactiveMargin = 220;
// move the scroll down to the beggining (move as much as the height of the menu)
$wrapper.scrollLeft($menu.outerHeight());
//when moving the mouse up or down, the wrapper moves (scrolls) up or down
$wrapper.bind('mousemove',function(e){
var wrapperWidth = $wrapper.width();
var menuWidth = $menu.outerWidth() + 2 * inactiveMargin;
var left = (e.pageX - $wrapper.offset().left) * (menuWidth - wrapperWidth) / wrapperWidth - inactiveMargin;
$wrapper.scrollLeft(left+10);
});
}
Да, и добавьте float:left
в этот бит CSS:
.sc_menu img {
display: block;
border: none;
float: left;
opacity:0.3;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);
}
Обновлен для правильной работы прокрутки и выделения - это может быть не самый эффективный способ сделать это, но я не сильно изменил код по сравнению с оригиналом. Обновленная демоверсия здесь .
CSS
/* Navigation Style */
ul.menu{
position: fixed;
top: 0px;
left:0px;
width: 100%;
}
ul.menu li{
position:relative;
width: 100%
}
ul.menu li > a {
display: block;
position:absolute;
top:300px;
left:0px;
width:40px;
height:200px;
background-color:#e7e7e8;
}
/* Thumb Scrolling Style */
div.sc_menu_wrapper {
position: relative;
height: 220px;
overflow: hidden;
top: 300px;
left: 0px;
visibility:hidden;
}
div.sc_menu {
height: 195px;
visibility:hidden;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
display: block;
top: 0;
left: 0;
width: 100%;
}
.sc_menu a {
background-color:#e7e7e8;
}
.sc_menu img {
height: 195px;
width: 130px;
float: left;
display: block;
border: none;
opacity:0.3;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=30);
}
Сценарий
$(function(){
// function to make the thumbs menu scrollable
function buildThumbs($elem) {
var $wrapper = $elem.next();
var $menu = $wrapper.find('.sc_menu');
var leftOffset = $wrapper.offset().left;
// move the scroll left to the beggining
$wrapper.scrollLeft(0);
// make menuWidth (width of all images side by side) include the offset
var menuWidth = leftOffset;
// calculate the width of the menu by adding each image width (includes any padding, border & margin)
$menu.find('img').each(function(){
$(this).css('left', menuWidth );
menuWidth += $(this).outerWidth(true);
});
// set calculated menu width - if not done, the images will wrap to the next line
$menu.width(menuWidth);
//when moving the mouse left or right, the wrapper moves (scrolls) left or right
$wrapper.bind('mousemove', function(e){
var wrapperWidth = $wrapper.outerWidth(true);
var left = ( e.pageX - leftOffset ) * (menuWidth - wrapperWidth) / wrapperWidth;
$wrapper.scrollLeft(left);
});
}
var stacktime;
$('#menu li > a').bind('mouseover', function(){
var $this = $(this);
// set up thumbnail scrolling
buildThumbs($this);
var pos = 0,
len = $this.next().find('a').length;
var f = function () {
if (pos > len) { clearTimeout(stacktime); }
$this.next().find('a:nth-child(' + pos + ')').css('visibility', 'visible');
pos++;
};
// each thumb will appear with a delay
stacktime = setInterval(f, 50);
});
// on mouseleave, the whole the scrollable area is hidden
$('#menu li').bind('mouseleave', function(){
var $this = $(this);
clearTimeout(stacktime);
$this.find('.sc_menu').css('visibility', 'hidden').find('a').css('visibility', 'hidden');
$this.find('.sc_menu_wrapper').css('visibility', 'hidden');
});
// when hovering a thumb, change its opacity
$('.sc_menu a').hover(function(){
$(this).find('img').stop().animate({ 'opacity': '1.0' }, 400);
}, function () {
$(this).find('img').stop().animate({ 'opacity': '0.3' }, 400);
});
});