我正在尝试创建一个在点击时更改并自动旋转的图片横幅。我能够使用Oriol用户在之前的帖子“Image Gallery Thumbnails Slider”中添加的内容,并且它运行得非常好。这是原始的jsfiddle:
var xml = "<rss version='2.0'><channel>"+
"<image>http://www.nikon.com/swf/img/thumbnail_ophthalmic_lenses.png</image>"+
"<image>http://www.nikon.com/swf/img/thumbnail_ophthalmic_lenses.png</image>"+
"<image>http://www.nikon.com/swf/img/thumbnail_ophthalmic_lenses.png</image>"+
"<limage>http://images1.videolan.org/images/largeVLC.png</limage>"+
"<limage>http://images1.videolan.org/images/largeVLC.png</limage>"+
"<limage>http://images1.videolan.org/images/largeVLC.png</limage>"+
"</channel></rss>",
$xml = $( $.parseXML(xml) ),
$images=$([
//[elements, place, className],
[$xml.find("image") ,"#thumbs",'thumbnails'],
[$xml.find("limage"),"#panel" ,'largeimages']
]);
$images.each(function(){
var that=this;
that[0].each(function(){
$(that[1]).append($('<img>', {class: that[2], src:$(this).text()}));
});
});
$("#thumbs>img").click(function(){
$("#thumbs>img.clicked").removeClass('clicked');
$("#panel>img").hide();
$("#panel>img:nth-child("+Number($(this).index()+1)+")").fadeIn();
$(this).addClass('clicked');
});
$("#thumbs>img:first").click();
$('#next').click(function(){
$('#thumbs>img.clicked').next().click();
});
$('#prev').click(function(){
$('#thumbs>img.clicked').prev().click();
});
我可以自定义它,以便在点击缩略图或上一个/下一个按钮时我的横幅更改。所以,我的问题是......
我可以添加哪些代码来自动更改横幅广告?有什么我可以在这里插入的吗?
答案 0 :(得分:1)
您可以使用js setinterval重复点击缩略图的事件。
<强> HTML 强>
<input type="checkbox" name="autoplay" value="autoplay" />autoplay
<强> JS 强>
function autoPlay() {
var nextImg = $('#thumbs>img.clicked').next();
if (nextImg.length == 0) {
nextImg = $('#thumbs>img').eq(0);
}
nextImg.click();
}
var autoInterval;
$('input[type="checkbox"][name="autoplay"]').click(function () {
if ($(this).is(":checked")) {
autoInterval = setInterval(autoPlay, 2000);
} else {
clearInterval(autoInterval);
}
});
答案 1 :(得分:0)
喜欢这个吗?
http://jsfiddle.net/samih/L7yKp/100/
添加了settimeout函数,该函数触发下一个元素的click事件。你可以在javascript部分的底部看到它。
var runSlideShow = function(){
setTimeout(slideShow, 3000);
};
var slideShow = function(){
var images = $('#thumbs>img');
for (var i=0; i<images.length; i++) {
if ($(images[i]).hasClass('clicked')){
if (i === images.length - 1){
$(images[0]).trigger('click');
}
else {
$(images[i+1]).trigger('click');
}
break;
}
}
runSlideShow();
};
runSlideShow();