最后一张幻灯片后,拉斯维加斯背景jquery插件重定向到网址

时间:2014-06-15 02:58:34

标签: jquery

我正在使用位于此处的维加斯背景jQuery插件http://vegas.jaysalvat.com/和幻灯片循环。我的问题有两个:

  1. 如何停止幻灯片循环播放(哪个文件,以及我编辑或插入的代码)?
  2. 我想在幻灯片显示的最后一张幻灯片的末尾重定向到一个URL(哪个文件,以及我编辑或插入的代码)?

1 个答案:

答案 0 :(得分:0)

$.vegas('slideshow', {
  backgrounds:pictures, 
  delay: 4000,
  walk:function(step) {
    if (step == 3){
      //this will stop
      $.vegas('stop');
      //this will redirect
      document.location.href = 'http://www.example.com'.
    }
  }
})('overlay');