@aliparlakci/ngpoint

An AngularJS carousel component for HTML content

Usage no npm install needed!

<script type="module">
  import aliparlakciNgpoint from 'https://cdn.skypack.dev/@aliparlakci/ngpoint';
</script>

README

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>