jquery百度新首页网址
导航jquery百度新首页网址导航是一款仿百度新首页的页面,页面带输入框自动补全插件,tab切换等。jquery百度网址导航
tab切换
<script src="js/jquery.autocomplete.min.js"></script>
<script>
$('.uname,.topMenus').hover(function(){
$('.topMenus').stop
(true,true).fadeIn(200);
},function(){
$('.topMenus').stop(true,true).delay(500).fadeOut(200);
});
//搜索框自动补全;
$('.searchIpt').AutoComplete({
'data': ['About
Me', '审美网', 'abcdefg', 'One', 'Two', 'Three', 'Four', 'Five', 'Six','smwell.com',
'Seven', 'Eight', 'Nine', 'Ten', 'Eleven', 'Twelve'],
'itemHeight': 24,
'width': 529
}).AutoComplete('show');
$('.ctnerTab
a').click(function(){
if(!$(this).hasClass('on')){
$('.ctnerTab a').removeClass('on').eq($(this).index()).addClass('on');
$('.rtNavs').stop(true,true).hide(200).eq($(this).index()).show(300);
}
});
$('.menusWrapper a').click(function(){
if(!$(this).hasClass('active')){
$('.menusWrapper
a').removeClass('active').eq($(this).index()).addClass('active');
$('.cbox').stop(true,true).animate({top:318},100).hide().eq($(this).index()).animate
({top:0},400).show();
}
});
$('.smallPics a').click(function(){
if(!$(this).hasClass('active')){
$('.smallPics a').removeClass('active').eq($(this).index
()).addClass('active');
$('.picLink').stop(true,true).removeClass
('active').eq($(this).index()).addClass('active');
}
});
$('.titleT').hover(function(){
if
(!$(this).hasClass('on')){
$('.titleT').removeClass('on').eq
($(this).index()).addClass('on');
$('.topicB').stop
(true,true).hide().eq($(this).index()).show();
}
});
</script>