jQuery实现内容定时切换效果完整实例

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>左右切换内容 </title> <script type="text/javascript"> </script> <style type="text/css"> /* Reset style */ * { margin:0; padding:0; word-break:break-all; } body { background:#FFF; color:#333; font:12px/1.6em Helvetica, Arial, sans-serif; } h1, h2, h3, h4, h5, h6 { font-size:1em; } a { color:#039; text-decoration:none; } a:hover { text-decoration:underline; } ul, li { list-style:none; } fieldset, img { border:none; } em, strong, cite, th { font-style:normal; font-weight:normal; } #change{ position:relative; top :20px;left:60px } /* Hot_ranks style */ #hot_ranks { position:relative; width:190px; overflow:hidden; margin:50px; border:1px solid #E0E0E0; background:#F6F8F8; } #hot_ranks h3 { padding:8px 8px 6px 8px; font-size:14px;} #hot_ranks .hot_ranks_list { padding-bottom:6px; } #hot_ranks .normal { display:none; } #hot_ranks .current { display:block; } #hot_ranks ul li { width:95%; height:21px; overflow:hidden; margin:0 auto; line-height:20px; } #hot_ranks ul li em { padding:0 1px 0 3px; } #ranks_change_bar { position:absolute; top:8px; right:2px; } #ranks_change_bar a { display:block; float:left; width:27px; height:13px; overflow:hidden; margin:0 2px; background:url(arrow.gif) no-repeat; text-indent:-9999px; cursor:pointer;} #ranks_change_bar #previous { background-position:0 0; } #ranks_change_bar #next { background-position:-27px 0; } </style> <script src="https://www.jb51.net/jquery-1.7.2.min.js" type="text/javascript"></script> <script language="javascript"> $(function(){ abc(); }); function abc(){ var $obj = $('#hot_ranks ul'); var len = $obj.length; var i = 0; $("#next").click(function(){ i++; if(i==len){ i = 0; } $obj.stop(true,true).hide().eq(i).fadeIn(600); return false; }); $("#previous").click(function(){ i--; if(i==-1){ i = len-1; } $obj.stop(true,true).hide().eq(i).fadeIn(600); return false; }); //每2秒,自动切换。触发".next"的click事件 var MyTime = setInterval(function(){ $("#next").trigger("click"); } , 4000); } </script> </head> <body> <div> <h3>站点价值排行</h3> <ul> <li><em>1</em> <a href="#">首支北京奥运比赛用枪入境</a></li> <li><em>2</em> <a href="#">"最稳金牌"落选奥运阵容</a></li> <li><em>3</em> <a href="#">微软否认盖茨为看奥运租房</a></li> <li><em>4</em> <a href="#">金晶坐飞机被蛮横夫妇欺侮</a></li> <li><em>5</em> <a href="#">俄美女展示奥运服 奥运兵马俑亮相京城装</a></li> <li><em>6</em> <a href="#">五部奥运题材电影出炉 志愿者微笑迎奥运</a></li> <li><em>7</em> <a href="#">奥运志愿者不乏绝世佳丽 清纯奥运引导员</a></li> <li><em>8</em> <a href="#">奥运饭店正式运行 国际奥委会各部门入驻</a></li> </ul> <ul> <li><em>9</em> <a href="#">奥运会中国最稳的十个冠军</a></li> <li><em>10</em> <a href="#">女大学生怎么成了悲惨"卡奴"</a></li> <li><em>11</em> <a href="#">80岁老母竟被儿女逼得有家难回</a></li> <li><em>12</em> <a href="#">日本街头清新美女如此混搭(图)</a></li> <li><em>13</em> <a href="#">视频:人眼永远看不到的真相!</a></li> <li><em>14</em> <a href="#">87版红楼梦那些难忘笑靥(组图)</a></li> <li><em>15</em> <a href="#">美女股神:散户就是被宠坏的人</a></li> <li><em>16</em> <a href="#">我的80后老婆从绵羊变成大灰狼</a></li> </ul> <ul> <li><em>17</em> <a href="#">马自达6轿跑全系让利2万元 新威驰全系优惠8000</a></li> <li><em>18</em> <a href="#">"[降价]致胜全系让2.8万元 海马3现车优惠1万元</a></li> <li><em>19</em> <a href="#">桑塔纳志俊优惠3000元 林荫大道优惠3万提销量</a></li> <li><em>20</em> <a href="#">金晶坐飞机被蛮横夫妇欺侮</a></li> <li><em>21</em> <a href="#">俄美女展示奥运服 奥运兵马俑亮相京城装</a></li> <li><em>22</em> <a href="#"> [闲聊]路拍亚洲最长悍马 强人用遥控车画大黄蜂</a></li> <li><em>23</em> <a href="#">奥运志愿者不乏绝世佳丽 清纯奥运引导员</a></li> <li><em>24</em> <a href="#">大开眼界的路虎悬挂车展 "最有趣"车名排行榜</a></li> </ul> <p><a href="#">上一页</a><a href="#">下一页</a></p> </div> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgygzf.html