https://github.com/dimpu/ng-marquee
a custom <marquee> tag
https://github.com/dimpu/ng-marquee
Last synced: 9 months ago
JSON representation
a custom <marquee> tag
- Host: GitHub
- URL: https://github.com/dimpu/ng-marquee
- Owner: dimpu
- License: mit
- Created: 2016-01-28T09:06:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-05-25T05:07:56.000Z (over 6 years ago)
- Last Synced: 2025-02-15T23:42:16.575Z (11 months ago)
- Language: HTML
- Size: 262 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ng-marquee
A custom marquee tag using angular.
## Demo
[Marquee](http://htmlpreview.github.io/?https://github.com/dimpu/ng-marquee/blob/master/example/index.html)
## Requirements
* [AngularJS](https://angularjs.org/)
## Usage
Add the ngMarquee module as a dependency to your application module:
```JavaScript
var myAppModule = angular.module('MyApp', ['ngMarquee'])
```
## ngMarquee
The ngMarquee directive allows you to specify element as a marquee.
### Directive Info
This directive executes at priority level 0.
### Usage
as element:
HTML
```HTML
...
```
### Arguments
| Param | Type | Details |
|:-----|:-------|-------|
|ngOptions |expression |Expression to specify custom options to marquee. |
### Example
```HTML
This is a marquee message.
```