Copy codeThe Code is as follows:
<Html xmlns = "http://www.w3.org/1999/xhtml">
<Head>
<Title> </title>
<Script src = "Scripts/jquery-1.4.1.min.js" type = "text/javascript"> </script>
<Script type = "text/javascript">
Var t;
Var speed = 2; // picture switching speed
Var nowlan = 0; // image Start Time
Function changepic (){
Var imglen = $ ("div [name = 'pic ']"). find ("div"). length;
$ ("Div [name = 'pic ']"). find ("div"). hide ();
$ ("Div [name = 'pic ']"). find ("div"). eq (nowlan). show ();
Nowlan = nowlan + 1 = imglen? 0: nowlan + 1;
T = setTimeout ("changepic ()", speed * 1000 );
}
Onload = function () {changepic ();}
$ (Document). ready (function (){
// Hover the mouse over the image to pause Switching
$ ("Div [name = 'pic ']"). hover (function () {clearInterval (t );});
// Move the mouse away from the image to continue Switching
$ ("Div [name = 'pic ']"). mouseleave (function () {changepic ();});
});
</Script>
</Head>
<Body>
<Div name = "pic" style = "float: left; position: relative; overflow: hidden; width: 300px; height: 240px;">
<Div> </div>
<Div> </div>
<Div> </div>
</Div>
</Body>
</Html>