首页 > 语言 > JavaScript > 正文

js实现索引图片切换效果

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

这篇文章主要介绍了js实现索引图片切换效果的代码,特别炫酷的效果,推荐给大家,感兴趣的小伙伴们可以参考一下

本文实例讲述了js实现索引图片切换效果的代码。分享给大家供大家参考。具体如下:

运行效果截图如下:

js实现索引图片切换效果

具体代码如下

html代码:

 

 
  1. <div id="slideshowHolder"
  2. <img src="img/1.jpg" /> 
  3. <img src="img/2.jpg" /> 
  4. <img src="img/3.jpg" /> 
  5. </div> 

css代码:

 

 
  1. .ft-prev, .ft-next { 
  2. background-color: #000; 
  3. padding: 0 10px; 
  4. color:#fff; 

js代码:

 

 
  1. $(document).ready(function () { 
  2. $('#slideshowHolder').jqFancyTransitions({ 
  3. effect: ''// wave, zipper, curtain 
  4. width: 500, // width of panel 
  5. height: 700, // height of panel 
  6. strips: 20, // number of strips 
  7. delay: 5000, // delay between images in ms 
  8. stripDelay: 50, // delay beetwen strips in ms 
  9. titleOpacity: 0.7, // opacity of title 
  10. titleSpeed: 1000, // speed of title appereance in ms 
  11. position: 'alternate'// top, bottom, alternate, curtain 
  12. direction: 'fountainAlternate'// left, right, alternate, random, fountain, fountainAlternate 
  13. navigation: true// prev and next navigation buttons 
  14. links: true // show images as links 
  15. }); 
  16. }); 

以上就是js实现索引图片切换效果的主要代码,希望对大家动手实现图片切换效果。


注:相关教程知识阅读请移步到JavaScript/Ajax教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选