JQuery 그림 스크롤 윤방 코드 공유

6073 단어 jquery
나중에 사용할 수 있도록 JQuery가 그림을 스크롤하는 윤방을 실현하는 코드를 공유합니다.
코드:
 1 <!DOCTYPE html> 

 2 <html> 

 3 <head> 

 4 <title>    -JQuery        -www.jbxue.com</title> 

 5 <script type="text/javascript" src="js/jquery-1.11.0.min.js"></script> 

 6 <script type="text/javascript" > 

 7 var num = 0 

 8 $(function(){ 

 9 $("div ol li").mouseover(function(e){ 

10 $(this).attr("class","current"); 

11 $(this).siblings().attr("class",""); //     class       

12 //alert($('ul').index()) 

13 num = $('ul').index() + 2 

14 var index = $(this).index(); //     li   ul     

15 //                  ,       z-index               

16 $("div ul li").eq(index).css({"left":"650px","zIndex":num}) 

17 $("div ul li").eq(index).siblings().css("zIndex",num-1); 

18 //

19 $("div ul li").eq(index).animate({left:"0"},500)

20 

21 });

22 

23 }); 

24 </script> 

25 <style type="text/css"> 

26 *{margin: 0px;padding: 0px;border: 0px;} 

27 ul,ol{list-style: none;} 

28 .all{width:650px;height: 250px;margin: 100px auto;position: relative;border: 1px solid crimson;overflow: hidden;} 

29 .all ul{position: relative;z-index: 1;position: relative;}

30 

31 /*       */ 

32 .all ul li{position: absolute;left: 0;top: 0px;}

33 

34 .all ol{position: absolute;z-index: 2; right: 10px;bottom: 10px;} 

35 .all ol li{width: 20px;height: 20px;background: #333;border: 1px solid #509629;font-weight: 

36 bold;text-align: center;line-height: 20px;float: left;margin-left: 10px;margin-top: 10px;}

37 

38 .all ol .current{width: 30px;height: 30px;line-height: 30px;border: 1px solid red;margin-top: 0px; 

39 cursor: pointer;} 

40 </style> 

41 </head> 

42 <body> (     www.jbxue.com)

43 <div class="all"> 

44 <ul> 

45 <li><img src="src/1.jpg" /></li> 

46 <li><img src="src/2.jpg" /></li> 

47 <li><img src="src/3.jpg" /></li> 

48 <li><img src="src/4.jpg" /></li> 

49 </ul> 

50 <ol> 

51 <li class="current">1</li> 

52 <li>2</li> 

53 <li>3</li> 

54 <li>4</li> 

55 </ol> 

56 </div> 

57 </body> 

58 </html>

좋은 웹페이지 즐겨찾기