// JavaScript Document jQuery(function($) { var index = 0; var maximg = 5; //$('
').appendTo("#myjQuery"); //滑動導航改變內容 $("#myjQueryNav li").hover(function() { if (MyTime) { clearInterval(MyTime); } index = $("#myjQueryNav li").index(this); MyTime = setTimeout(function() { ShowjQueryFlash(index); $('#myjQueryContent').stop(); }, 400); }, function() { clearInterval(MyTime); MyTime = setInterval(function() { ShowjQueryFlash(index); index++; if (index == maximg) { index = 0; } }, 3000); }); //滑入 停止動畫,滑出開始動畫. $('#myjQueryContent').hover(function() { if (MyTime) { clearInterval(MyTime); } }, function() { MyTime = setInterval(function() { ShowjQueryFlash(index); index++; if (index == maximg) { index = 0; } }, 3000); }); //自動播放 var MyTime = setInterval(function() { ShowjQueryFlash(index); index++; if (index == maximg) { index = 0; } }, 3000); }); function ShowjQueryFlash(i) { $("#myjQueryContent div").eq(i).animate({ opacity: 1 }, 1000).css({ "z-index": "1" }).siblings().animate({ opacity: 0 }, 1000).css({ "z-index": "0" }); //$("#flow").animate({ left: 652+(i*76) +"px"}, 300 ); //滑塊滑動 $("#myjQueryNav li").eq(i).addClass("current").siblings().removeClass("current"); }