2

我想为我的灯箱组合添加图像效果,如滑入/滑出或淡入/淡出或任何随机效果,我正在使用漂亮的照片插件。

有可能吗?

下面是我的插件http://pastebin.com/zZMQWU9e

4

1 回答 1

0

你可以使用这样的动画

$("a[rel^='prettyPhoto']").prettyPhoto({
            animation_speed: 'fast', /* fast/slow/normal */
            slideshow: 5000, /* false OR interval time in ms */
            autoplay_slideshow: false, /* true/false */
            opacity: 0.80, /* Value between 0 and 1 */
            show_title: true, /* true/false */
            allow_resize: true, /* Resize the photos bigger than viewport. true/false */
            default_width: 500,
});

这是您在问题中讨论的 pretyphotos 的完整文档。

文件

于 2013-07-04T07:50:14.607 回答