/*监听滚动条和左侧菜单点击事件 start b y 33 hao.com*/
var _arr = [];
window.onscroll = function(){
if(850 < $(document).scrollTop()){ //原值800
$('.nav_Sidebar').fadeIn('slow');
}
// if(2500 > $(document).scrollTop()){ //原值800
// $('.nav_Sidebar').fadeOut('slow');
else{
$('.nav_Sidebar').fadeOut('slow');
}
$('.home-standard-layout').each(function(index){
var that = $(this);
that.index = index;
if($(document).scrollTop() + $(window).height()/2 > that.offset().top){
_arr.push(index);
}
});
if(_arr.length){
$('.nav_Sidebar a').eq(_arr[_arr.length-1]).css({'backgroundImage':'url('+SHOP_SITE_URL+'/templates/default/images/home-nav-icon-hover.png)'}).addClass('current').siblings().css({'backgroundImage':'url('+SHOP_SITE_URL+'/templates/default/images/home-nav-icon.png)'}).removeClass('current');
_arr = [];
}
}
$('.nav_Sidebar a').each(function(index){
$(this).click(function(){
$('html,body').animate({scrollTop: $('.home-standard-layout').eq(index).offset().top - 20 + 'px'}, 1000);
}).mouseover(function(){ //原值.top-20 500
if($(this).hasClass('current')){
return;
}else{
$(this).css({'backgroundImage':'url('+SHOP_SITE_URL+'/templates/default/images/home-nav-icon-hover2.png)'});
}
}).mouseout(function(){
if($(this).hasClass('current')){
return;
}else{
$(this).css({'backgroundImage':'url('+SHOP_SITE_URL+'/templates/default/images/home-nav-icon.png)'});
}
});
});
window.onload = window.onresize = function(){
if($(window).width() < 1100 || 800 > $(document).scrollTop()){ //原值1300 800
$('.nav_Sidebar').fadeOut('slow');
}else{
$('.nav_Sidebar').fadeIn('slow');
}
}
/*end*/
|