javascript圖片輪換

來源:互聯網
上載者:User
 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
5 <title>簡單的圖片輪換</title>
6 <style type="text/css">
7 *{
8 margin:0;
9 padding:0;
10 }
11
12 #banner{
13 position:relative;
14 width:954px;
15 height:198px;
16 margin:5px auto;
17 border:2px solid #f00;
18 }
19 #banner div{
20 position:absolute;
21 }
22 </style>
23
24 <script type="text/javascript">
25 var minnum=1;//起始數
26 var maxnum=3;//結束數
27 var nownum=1;//當前數
28 function changepic(){
29 for(var i=minnum;i<=maxnum;i++){
30 if(nownum==i)
31 document.getElementById("mypic").src="images/banner_img"+i+".jpg";
32 }
33 nownum++;
34 if(nownum==(maxnum+1)){
35 nownum=1;
36 }
37 window.setTimeout(changepic,3000);
38 }
39
40 </script>
41 </head>
42
43 <body>
44 <ul>
45 <li id="banner">
46 <div>
47 <A href="#">
48 <img src="images/banner_img1.gif" id="mypic"/>
49 </A>
50 </div>
51 </li>
52 </ul>
53 </body>
54 </html>

這是一個簡單的圖片輪換代碼.

給img設定了id,在javascript中通過document.getElementById("").src得到img的路徑,進行修改。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.