Jquery循环/使用特定幻灯片中的其他循环插件打开另一个页面

时间:2014-03-19 06:56:30

标签: jquery plugins cycle

我想知道是否可以打开包含循环插件的新 page.html 并转到特定幻灯片。我的意思是,从 page1.html page2.html ,并以幻灯片6 为例启动插件。

我不太了解JS,但这是我试图使用的代码:

$(function(){     $('#cycle_images&#39)。循环({         超时:0,         速度:300,     fx:' scrollVert',         startingSlide:0     });

$('#button').click(function() {
window.location = 'page2.html' 
    $('#cycle_images').cycle(6); 
    return false;
});

});

非常感谢!!抱歉我的英语不好:(

1 个答案:

答案 0 :(得分:0)

第一页按钮ID

<a href="pagetwo.html#2" target="_blank">Click me</a>

第二页[滑块页面]

这样的代码[与您的班级名字一起更新日期]

$(document).ready(function() {
   var urlNo = location.hash.split('#')[1]
   alert(urlNo);


    $('#banner').cycle({
        fx: 'fade',
        speed: 500,
        timeout: 5000,
        next: '#next',
        prev: '#previous',
        pause: 1
    });

    if ( urlNo == urlNo ){
    $('#banner').cycle(urlNo); 
    return false; 
    }


});

Demo link