当前位置: 软件>JavaScript软件
jQuery Image Gallery
本文导语: Image Gallery with Lightbox effect and slideshow functionality for jQuery UI. 示例代码: $('a[rel=gallery]').imagegallery({ open: function (event, ui) {/* called on dialogopen */}, title: 'Image Gallery', // Sets the dialog title show: 'scale', // The effect to be used when the d...
Image Gallery with Lightbox effect and slideshow functionality for jQuery UI.
![jQuery Image Gallery[图片]](/img/tech-article-img-javascript/img_1418568213_376532.jpeg)
示例代码:
$('a[rel=gallery]').imagegallery({
open: function (event, ui) {/* called on dialogopen */},
title: 'Image Gallery', // Sets the dialog title
show: 'scale', // The effect to be used when the dialog is opened
hide: 'explode', // The effect to be used when the dialog is closed
offsetWidth: 50, // Offset of image width to viewport width
offsetHeight: 50, // Offset of image height to viewport height
slideshow: 5000, // Shows the next image after 5000 ms
fullscreen: true, // Displays images fullscreen (overrides offsets)
canvas: true, // Displays images as canvas elements
namespace: 'myimagegallery' // event handler namespace
});