项目作者: Dilatorily

项目描述 :
AngularJS module for Packery
高级语言: JavaScript
项目地址: git://github.com/Dilatorily/packery-angular.git
创建时间: 2016-01-07T00:02:14Z
项目社区:https://github.com/Dilatorily/packery-angular

开源协议:MIT License

下载


packery-angular

NPM version
Build Status
Coverage Status
Dependency Status
devDependency Status

Installation

Installation is easy since packery-angular has minimal dependencies.

Requirements

This module requires the following libraries to be already installed:

Install using NPM

  1. $ npm install packery-angular

Install using bower

  1. $ bower install packery-angular

Import the necessary files

Add the necessary scripts to your HTML page.

  1. <!DOCTYPE html>
  2. <html ng-app="app">
  3. <head>
  4. <!-- Include the necessary libraries -->
  5. <script src="js/angular.min.js"></script>
  6. <script src="js/draggabilly.pkgd.min.js"></script>
  7. <script src="js/packery.pkgd.min.js"></script>
  8. <!-- Include the packery-angular script -->
  9. <script src="js/packery-angular.min.js"></script>
  10. </head>
  11. </html>

Inject the module to your project

When all of the dependencies are installed, inject this module to the list of dependencies of your application.

  1. angular.module('app', ['packery-angular']);

Usage

This module exposes a couple of directives to simplify the usage of the Packery instance.

HTML

  1. <pa-packery pa-options="options">
  2. <pa-packery-item class="pa-item">Sample item 1</pa-packery-item>
  3. <pa-packery-item class="pa-item">Sample item 2</pa-packery-item>
  4. <pa-packery-item class="pa-item">Sample item 3</pa-packery-item>
  5. </pa-packery>

JavaScript

  1. $scope.options = {
  2. columnWidth: 1,
  3. dragSelector: '',
  4. isAppended: true,
  5. isDraggable: true,
  6. itemSelector: '.pa-item',
  7. rowHeight: 1,
  8. stamp: '.pa-stamp'
  9. };

Changelog

Please check the CHANGELOG.md for the list of changes.

Contributing

I am open for modifications on this project. Please check the CONTRIBUTING.md for the contribution guidelines.

License

This repository is open source and distributed under the MIT License.

Packery is a product of Metafizzy LLC and is distributed under a separate license. Please refer to their website for information on Packery’s license.