软件介绍
jQuery打造多彩的滑动动画导航菜单
jQuery(document).ready(function($) {
/* create the span tht will be animated across the menu*/
/* declare our many variables for easy ref*/var $span = $('<span class="colourful"></span>');
$span.insertBefore($("#menu ul"));var $menu_link = $('#menu li a'),
$hovered = $('#menu a.hovered'),/**/
$hovered_pos = $hovered.position('#menu');/*position of hovered menu item*//* declare our many colors that can confuse a chameleon*/
var $colour_arr = ['#fbb92e','#f8d52f','#b4f62f','#54f7a8','#3ff7f3','#3a97fa','#6835f9','#d544f6','#f650ab'];/*iterate through all menu links and apply colors to border top */
$menu_link.each(function(index){$menu_link.eq(index).css('border-color',$colour_arr[index]);
});
/* all the magic happens here*/
function init () {if($hovered_pos) {
$span.css('left',$hovered_pos);
var index = 0;
/* search for the selected menu item*/
for(i=0; i<$menu_link.length; i++) {
if($($menu_link[i]).hasClass('hovered')) {
index = i;
}
}
$span.css('background',$colour_arr[index]);}
/*mouseenter funtion*/
$menu_link.each(
function( intIndex ){
$(this).on (
"mouseenter",
function(event){var x = $(this).position('#menu');
x = x.left;$span.css('background',$colour_arr[intIndex]);
$span.stop();
$span.animate({left: x
},300);
}
);}
);
/* mouseout function*/
$menu_link.each(
function( intIndex ){
$(this).on (
"mouseleave",
function(event){
$span.stop();
var x = -100;
if($hovered_pos) {
x = $hovered_pos;
var index = 0;
for(i=0; i<$menu_link.length; i++) {
if($($menu_link[i]).hasClass('hovered')) {
index = i;
}
}
$span.css('background',colour_arr[index]);}
$span.animate({
left: x
},300);
}
);
}
);
}
/* call/ init our function*/
init();
});