Gridder - 图片显示插件
MIT
跨平台
HTML/CSS
软件简介
Gridder 是一个显示缩略图网格预览的 jQuery 插件,和 Google Image 显示效果相似。
示例代码:
<script>$(function() { // Call Gridder
$('.gridder').gridderExpander({
scroll: true,
scrollOffset: 30,
scrollTo: "panel", // panel or listitem
animationSpeed: 400,
animationEasing: "easeInOutExpo",
showNav: true, // Show Navigation
nextText: "Next", // Next button text
prevText: "Previous", // Previous button text
closeText: "Close", // Close button text
onStart: function(){ //Gridder Inititialized
}, onContent: function(){ //Gridder Content Loaded
}, onClosed: function(){ //Gridder Closed
}
});
});</script>