http://slidesjs.com/examples/standard/效果类似,但它有按扭是自动生成的,我想知道这种效果怎么实现的,一个渐没,一个渐有,谁能写个dome,兼容IE6,先谢了。

解决方案 »

  1.   

    你给的这个网站就有下载了。。
    https://github.com/nathansearles/Slides/archive/SlidesJS-3.zip
      

  2.   

    按钮不需要你可以配置        navigation: {active:false},
            pagination: {active:false}没有按钮你就需要配置为自动播放了。。
    play: {
          active: false,
            // [boolean] Generate the play and stop buttons.
            // You cannot use your own buttons. Sorry.
          effect: "slide",
            // [string] Can be either "slide" or "fade".
          interval: 5000,
            // [number] Time spent on each slide in milliseconds.
          auto: true,
            // [boolean] Start playing the slideshow on load.
          swap: true,
            // [boolean] show/hide stop and play buttons
          pauseOnHover: false,
            // [boolean] pause a playing slideshow on hover
          restartDelay: 2500
            // [number] restart delay on inactive slideshow
        }
    自己看api文档就知道了http://slidesjs.com/#docs