码迷,mamicode.com
首页 > 其他好文 > 详细

最简单的jq轮播图

时间:2018-01-13 11:19:40      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:char   maxlength   orange   fun   style   val   img   width   position   

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>轮播图</title>
 6     <style>
 7     .img1,
 8     .img2,
 9     .img3 {
10         width: 1200px;
11         height: 350px;
12         font-size: 30px;
13     }
14 
15     .img1 {
16         background-color: pink;
17     }
18 
19     .img2 {
20         background-color: green;
21         display: none;
22     }
23 
24     .img3 {
25         background-color: orange;
26         display: none;
27     }
28 
29     .banner {
30         display: relative;
31     }
32 
33     .banner div {
34         width: 100%;
35         height: 350px;
36         position: absolute;
37     }
38     </style>
39 </head>
40 
41 <body>
42     <div class="banner">
43             <div class="img1">0</div>
44             <div class="img2">1</div>
45             <div class="img3">2</div>
46     </div>
47 
48 </body>
49 <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>
50 <script>
51     $(function(){
52         var i = 0;
53         var maxLength = $(.banner div).length - 1;
54         function play(){
55             i++;
56             if(i> maxLength){
57                 i = 0;
58             }
59             $(.banner div).eq(i).fadeIn(1000).siblings().fadeOut(1000);
60         }
61         setInterval(play,3000);
62     })
63 </script>
64 </html>

 

最简单的jq轮播图

标签:char   maxlength   orange   fun   style   val   img   width   position   

原文地址:https://www.cnblogs.com/jddk/p/8278422.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!