我目前正在使用slidesjs.com滑块,我想要这样做,当我点击滑块外的链接时,滑动到当前幻灯片,例如单击滑动一个链接(#1),然后滑动以滑动滑块内的一个(#1)。这是我的编码任何帮助将不胜感激。
$(function(){
// Set starting slide to 1
var startSlide = 1;
// Get slide number if it exists
if (window.location.hash) {
startSlide = window.location.hash.replace('#','');
}
// Initialize Slides
$('#passion_slider').slides({
autoHeight: true,
// Get the starting slide
start: startSlide,
animationComplete: function(current){
// Set the slide number as a hash
window.location.hash = '#' + current;
}
});
});
答案 0 :(得分:0)
添加到就绪活动。将目标var用于目的地。
$(window).click(function(){
var target="#1";
$('a[href='+target+']').click()
})
特定任务的解决方案! 将点击触发器添加到链接以直接显示特定幻灯片:
//$('.passionnavigation li a').unbind(); //unbind all events on links
$('.passionnavigation li a').click(function(){
var targetH = $(this).attr('href');
$('#passion_slider a[href='+targetH+']').click();
})