我已将此图片库http://tympanus.net/codrops/2011/09/20/responsive-image-gallery/添加到我正在处理的网站中。完美无瑕地工作,唯一的事情就是没有选择自动播放幻灯片。
http://www.debellephotography.com/debelleslide/
非常感谢任何帮助!
答案 0 :(得分:2)
我在这里和那里拼凑了一些碎片并找到了一种方法,感谢你的帮助。
var t;
var timer_is_on=0;
function timedCount()
{
$('.rg-image-nav-next').click()
t=setTimeout("timedCount()",1000);
}
function doTimer()
{
if (!timer_is_on)
{
timer_is_on=1;
timedCount(1000);
}
}
function stopCount()
{
clearTimeout(t);
timer_is_on=0;
}
timeCount函数每1秒激活一次下一张图像。 doTimer函数可防止多次激活计时器。 stopCount函数允许暂停幻灯片放映。
然后我添加了两个按钮来暂停和播放:
<div class="playbutton"><a href="javascript:doTimer();"><img src="images/play.png" width="24" height="24" alt="Play"></a></div>
<div class="pausebutton"><a href="javascript:stopCount();"><img src="images/pause.png" width="24" height="24" alt="Pause"></a></div>
您可以在此处看到它:example with autoplay
答案 1 :(得分:1)
您想要创建一个新按钮,触发setInterval函数以循环播放幻灯片。它看起来像这样:
<button onclick="play()">slideshow</button>
function play() {
setInterval(function() {
// Do the code that triggers next image
}, 1000);
}
数字1000是正在运行的函数之间的毫秒数。
答案 2 :(得分:1)
试试这个
var current=1;
function autoAdv()
{
if(current==-1) return false;
$('.es-carousel a').eq(current%$('.es-carousel a').length).trigger('click',[true]); // [true] will be passed as the contentScroll parameter of the click function
current++;
$('.rg-image-nav-prev').eq(current%$('.rg-image-nav-prev').length).trigger('click',[true]); // [true] will be passed as the contentScroll parameter of the click function
current++;
}
// The number of seconds that the slider will auto-advance in:
var changeEvery = 10;
var itvl = setInterval(function(){autoAdv()},changeEvery*1000);