无法安装jQuery插件

时间:2014-02-12 19:40:23

标签: javascript jquery css plugins gallery

我想安装图库而不是使用flash我希望使用this jQuery插件。我无法弄清楚如何安装和使用它,因为它作为.zip存档分发,里面有两个.js文件,根本没有索引文件或.css。

Here's插入功能演示,我想实现。

1 个答案:

答案 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>