45fan.com - 路饭网

搜索: 您的位置主页 > 电脑频道 > 编程代码 > 阅读资讯:怎么样在js中实现索引图片切换效果?

怎么样在js中实现索引图片切换效果?

2016-03-03 16:54:59 来源:www.45fan.com 【

怎么样在js中实现索引图片切换效果?

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

怎么样在js中实现索引图片切换效果?

具体代码如下

html代码:

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

css代码:

.ft-prev, .ft-next {
   background-color: #000;
   padding: 0 10px;
   color:#fff;
  }

js代码:

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

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


本文地址:http://www.45fan.com/bcdm/41113.html
Tags: 实现 图片 索引
编辑:路饭网
推广内容
推荐阅读
热门推荐
推荐文章
关于我们 | 联系我们 | 友情链接 | 网站地图 | Sitemap | App | 返回顶部