我正在使用单页面布局网站,我在其中使用jQuery Cycle在内容之间切换。
目前我已经更改了脚本,因此它会在URL中显示当前幻灯片(以便可以收藏当前幻灯片)。
我还可以提醒正确的ID,但我无法启动它来激活幻灯片功能/效果。
$(window).bind('hashchange', function () { //detect hash change
var hash = window.location.hash.slice(1); //hash to string (= "myanchor")
alert(hash); //This Alerts the right ID/anchor of the current slide
//$('.slideshow').cycle(hash); // This doesn't work. If I use 1, 2, 3 etc. it shows the diffent slides
});
我怎样才能让它发挥作用?我错过了什么吗?
提前谢谢。
答案 0 :(得分:0)
我还没有完成,但即将尝试此解决方案:http://wesbos.com/jquery-cycle-link-within-hashchange/
编辑:就像一个魅力!