我想安装图库而不是使用flash我希望使用this jQuery插件。我无法弄清楚如何安装和使用它,因为它作为.zip存档分发,里面有两个.js文件,根本没有索引文件或.css。
Here's插入功能演示,我想实现。
答案 0 :(得分:0)
$("#container").gridalicious({
animate: true,
animationOptions: {
queue: true,
speed: 200,
duration: 300,
effect: 'fadeInOnAppear',
complete: onComplete
}
});
根据源代码......
CSS在JS本身中设置,不需要外部样式表。
如果您向下滚动http://suprb.com/apps/gridalicious/,您将看到如何初始化它。它似乎只是div
的集合,其中item
类位于初始化容器内。<div id="container">
例如。{/ p>
<!doctype html5>
<html>
<head>
<title>Test of plugin</title>
<script type="text/javascript" src="path/to/jquery-latest.min.js"></script>
<script type="text/javascript" src="jquery.grid-a-licious.min.js"></script>
</head>
<body>
<div id="container">
<!--I assume it asks for divs with the "item" class, but it may be added automatically.-->
</div>
<script type="text/javascript>
//The initialize code printed above. Has parameters (read:options) you can tweak.
</script>
</body>
</html>