- <!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" />
- <meta name="author" content="Nancle from CAU CS101" />
- <title>jQuery圖片漸變切換</title>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
- <style type="text/css">
- ul{position:relative;}
- ul li{display:block; position:absolute; left:0; top:0}
- img{width:480px; height:320px; border:5px solid #ccc}
- </style>
- </head>
- <body>
- <ul>
- <li><img src="http://down.fpwap.com/UploadFiles/sjbz/2010/6/2010615222757.jpg" /></li>
- <li><img src="http://img5.cache.netease.com/m/app/201108/31/953DDLJL.jpg" /></li>
- <li><img src="http://i-imgp.fetionpic.com/fphoto/photo1/M00/41/83/rBUyIVHfdvC9LAM6AAC873sDEoo981.jpg" /></li>
- <li><img src="http://img.bimg.126.net/photo/L0py2I9-0qIAd_Keov5GhQ==/1710804908448128265.jpg" /></li>
- </ul>
- </div>
- <script>
- var switchSpeed = 1000; //圖片切換時間
- var fadeSpeed = 1500; //漸變時間
- setInterval(function(){
- $('img').last().fadeOut(fadeSpeed, function(){
- $(this).show().parent().prependTo($('ul'));
- });
- }, switchSpeed);
- </script>
- </body>
- </html>
效果預(yù)覽:http://quchen.cau.edu.cn/jsDev/gradien.html
本文出自:http://blog.csdn.net/nancle/article/details/9706023
本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請
點擊舉報。