首页 > 语言 > JavaScript > 正文

jquery简单实现图片切换效果的方法

2024-05-06 16:19:59
字体:
来源:转载
供稿:网友

这篇文章主要介绍了jquery简单实现图片切换效果的方法,涉及jQuery链式操作及图片操作的相关技巧,需要的朋友可以参考下

本文实例讲述了jquery简单实现图片切换效果的方法。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
  6. <title>无标题文档</title> 
  7. <style type="text/css"
  8. #slider{ 
  9. position:relative; 
  10. overflow:hidden; 
  11. margin:20px auto; 
  12. height:240px; 
  13. width:740px; 
  14. padding:5px; 
  15. border:2px solid #cdcdcd; 
  16. #show{ 
  17. position:relative; 
  18. height:240px;  
  19. width:740px; 
  20. #show .img{ 
  21. width:740px; 
  22. height:240px; 
  23. margin-bottom:5px; 
  24. #num{ 
  25. position:absolute; 
  26. right:5px; 
  27. top:220px; 
  28. #num span{ 
  29. float:left; 
  30. display:block; 
  31. text-align:center; 
  32. width:20px; 
  33. height:20px; 
  34. line-height:20px; 
  35. margin:2px; 
  36. font-family:Arial, Helvetica, sans-serif; 
  37. font-size:14px; 
  38. font-weight:blod; 
  39. background:#f2f2f2; 
  40. border:1px solid #D78918; 
  41. color:#D78918; 
  42. #num .current{ 
  43. color: #fff; 
  44. width:21px; 
  45. height:21px; 
  46. line-height:21px; 
  47. font-size: 16px; 
  48. border:0px; 
  49. margin:0px 1px; 
  50. background-color: #FF7300; 
  51. </style> 
  52. <script src="js/jquery-1.3.1.js" type="text/javascript"></script> 
  53. <script type="text/javascript"
  54. <!-- 
  55. $(function(){ 
  56. var count=1; 
  57. setInterval(function(){ 
  58. count=count==5?0:count; 
  59. var top=-count*(240+5); 
  60. count++; 
  61. $("#show").animate({top:top},600); 
  62. $("#num").find("span").eq(count-1).addClass("current").siblings().removeClass("current"); 
  63. },2000); 
  64. }) 
  65. --> 
  66. </script> 
  67. </head> 
  68. <body> 
  69. <div id="slider"
  70. <div id="show"
  71. <div class="img" style="background:red;"></div> 
  72. <div class="img" style="background:blue"></div> 
  73. <div class="img" style="background:gold"></div> 
  74. <div class="img" style="background:yellow"></div> 
  75. <div class="img" style="background:green"></div> 
  76. </div> 
  77. <div id="num"
  78. <span class="current">1</span> 
  79. <span>2</span> 
  80. <span>3</span> 
  81. <span>4</span> 
  82. <span>5</span> 
  83. </div> 
  84. </div> 
  85. </body> 
  86. </html> 

希望本文所述对大家的jQuery程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选