我的灯箱插件全屏闪烁?

时间:2013-08-12 15:57:11

标签: css prettyphoto

事情正在发生。每次我点击它并查看全屏它会在5秒后闪烁然后每2秒开始闪烁一次? http://icpy.webs.com/prettyPhoto/index.html#prettyPhoto

2 个答案:

答案 0 :(得分:0)

那是因为它滚动了幻灯片。闪烁是动画

答案 1 :(得分: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'});