Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uxxman/angular-accordion
A simple angular directive for adding accordion UI element
https://github.com/uxxman/angular-accordion
accordion angular collapsible javascript
Last synced: 3 months ago
JSON representation
A simple angular directive for adding accordion UI element
- Host: GitHub
- URL: https://github.com/uxxman/angular-accordion
- Owner: uxxman
- License: mit
- Created: 2014-07-19T07:59:56.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2018-04-03T08:10:00.000Z (over 6 years ago)
- Last Synced: 2024-05-13T01:22:05.916Z (6 months ago)
- Topics: accordion, angular, collapsible, javascript
- Language: JavaScript
- Size: 31.3 KB
- Stars: 54
- Watchers: 6
- Forks: 37
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
angular-accordion
=================> A simple and light weight angular directive for adding accordion UI element.
Built using core angular and css transitions. Works smoothly on desktop and mobile browsers without any flickering in transitions. No jquery, bootstrap or any other dependency required.
## Usage
Include the required libraries
```html```
Declare a dependency on the `angAccordion` module
``` javascript
var app = angular.module('app', ['angAccordion']);
```Or ES2015+ users can import it as is:
```javascript
import ngAccordion from 'ang-accordion';angular.module('app', [ngAccordion]);
```That's all you need to start adding accordion UI element to your page. Project files are also available through your favourite package manager:
* **Bower**: `bower install ang-accordion`## Html Markup
```html
This is regular html code
...
```
## Options
+ **Open one collapsible at a time:**
By default all collapisible items open/close irrespective of other collapsible items. If you want to open only one collapsible item at a time, use the following option```html
...
```
+ **Set collapsible item to be initially openned:**
If you want collapsible item to be open when initially rendered on the page, use this option```html
...
```
+ **Set right/down icon and its position:**
You can add open and collapsed icon to show on title of a collapsible item and also define its position (defeault is right).```html
...
```
If you are using bootstrap Glyphicons or any other font icons, you can use them as icon in title as well.```html
...
```
+ **Disabling a collapsible item:**
You can also disable a collapsible item so, the user cannot open it.```html
...
```
## Author
**Muhammad Usman** (http://github.com/uxman-sherwani)
## Copyright and license
The MIT License
Copyright (c) 2014 Will Palahnuk
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.