1.2.1 • Published 4 years ago

@aliparlakci/ngpoint v1.2.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

ngpoint

A carousel for HTML content

npm install ngpoint

Usage

Import ngpoint in your .module.js and add it to dependencies.

import ngPoint from 'ngpoint';

angular.module('app', [ngPoint]);

Then, use it in your template as such: s

<slide-deck>
    <slide>
        <img src="path-to-image" />
    </slide>
    <slide>
        <img src="path-to-image" />
    </slide>
    <slide>
        <img src="path-to-image" />
    </slide>
</slide-deck>