有什么事情发生了。每次我点击它并全屏查看时它会在 5 秒后闪烁,然后每 2 秒开始闪烁? http://icpy.webs.com/prettyPhoto/index.html#prettyPhoto
问问题
394 次
2 回答
0
那是因为它正在滚动幻灯片。闪烁的是动画
于 2013-08-12T16:02:19.270 回答
0
您的灯箱处于幻灯片模式,自动启动为 true,更改为 false 将解决问题。
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square',slideshow:3000, autoplay_slideshow: false});
更新
如果您不想使用幻灯片,只需将相关行更改为:
$(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'light_square'});
于 2013-08-12T16:07:14.523 回答