All Projects → dimpu → angular2-signature-pad

dimpu / angular2-signature-pad

Licence: MIT license
Signature pad component for Angular 2.x and above.

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to angular2-signature-pad

angular2-cookie-law
Angular2+ component that provides a banner to inform users about cookie law
Stars: ✭ 38 (+123.53%)
Mutual labels:  angular2, ng2, angular4
Angular Google Maps
Angular 2+ Google Maps Components
Stars: ✭ 1,982 (+11558.82%)
Mutual labels:  angular2, ng2, angular4
ng-data-picker
🏄🏼 A data picker based on Angular 4+ (like native datetime picker of iOS)
Stars: ✭ 24 (+41.18%)
Mutual labels:  angular2, ng2, angular4
Angular2 Carousel
An lightweight , touchable and responsive library to create a carousel for angular 2 / 4 / 5
Stars: ✭ 26 (+52.94%)
Mutual labels:  angular2, ng2, angular4
Truly Ui
Truly-UI - Web Angular UI Components for Desktop Applications (Electron, NW, APP JS)
Stars: ✭ 195 (+1047.06%)
Mutual labels:  angular2, ng2, angular4
Ng2 Smart Table
Angular Smart Data Table component
Stars: ✭ 1,590 (+9252.94%)
Mutual labels:  angular2, ng2, angular4
Ngautocomplete
Light-weight autocomplete component for Angular.
Stars: ✭ 52 (+205.88%)
Mutual labels:  angular2, ng2, angular4
Ng2 Search Filter
Angular 2 / Angular 4 / Angular 5 custom pipe npm module to make a search filter on any input, 🔥 100K+ downloads
Stars: ✭ 137 (+705.88%)
Mutual labels:  angular2, ng2, angular4
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+16258.82%)
Mutual labels:  angular2, angular4
Angular Truffle Starter Dapp
Angular CLI + Truffle Starter Dapp; write, compile & deploy smart contracts on Ethereum blockchains
Stars: ✭ 174 (+923.53%)
Mutual labels:  angular2, angular4
Ng Drag Drop
Drag & Drop for Angular - based on HTML5 with no external dependencies. 🎉
Stars: ✭ 233 (+1270.59%)
Mutual labels:  angular2, angular4
Ngx Avatar
Universal avatar component for angular 2+ applications makes it possible to fetch / generate avatar from different sources
Stars: ✭ 210 (+1135.29%)
Mutual labels:  angular2, angular4
Ngx Inline Editor
Native UI Inline-editor Angular (4.0+) component
Stars: ✭ 172 (+911.76%)
Mutual labels:  angular2, angular4
Angular Notifier
A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular application.
Stars: ✭ 175 (+929.41%)
Mutual labels:  angular2, angular4
Ngx Daterangepicker Material
Pure Angular 2+ date range picker with material design theme, a demo here:
Stars: ✭ 169 (+894.12%)
Mutual labels:  angular2, angular4
Ngx Socket Io
Socket.IO module for Angular
Stars: ✭ 178 (+947.06%)
Mutual labels:  angular2, angular4
Ng2 Nouislider
Angular2 noUiSlider directive
Stars: ✭ 181 (+964.71%)
Mutual labels:  angular2, ng2
Ionic2 Rating
⭐️ Angular star rating bar. Built for Ionic 2+.
Stars: ✭ 177 (+941.18%)
Mutual labels:  angular2, angular4
Ngx Popper
An angular wrapper for popper.js, great for tooltips and positioning popping elements
Stars: ✭ 183 (+976.47%)
Mutual labels:  angular2, angular4
Angular5 Seed
Angular5 Seed for Application
Stars: ✭ 222 (+1205.88%)
Mutual labels:  angular2, angular4

Angular 2 SignaturePad

Build Status npm version npm npm

Source @ https://github.com/dimpu/angular2-signature-pad

Table of contents

  1. Getting Started
  2. Installation instructions
  3. Usage & Demo
  4. Contributing
  5. License

Getting Started

angular2-signature-pad contains SignaturePadModule for Angular 2.

Additionally we use signature_pad for this component.

Installation instructions

Install angular2-signature-pad from npm:

npm install angular2-signature-pad --save

or using yarn:

yarn add angular2-signature-pad

How to use it with:

Usage & Demo

Main source of API documentation and usage scenarios is available at https://dimpu.github.io/angular2-signature-pad/.

Contribution

Is very welcome! And remember, contribution is not only PRs and code, but any help with docs or helping other developers to solve issues are very appreciated! Thanks in advance!

Quick Guide

app.module.js

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { SignaturePadModule } from 'angular2-signature-pad';
import { AppComponent } from '../src/app.component';

@NgModule({
  imports: [
    BrowserModule,
    SignaturePadModule,
  ],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})

app.component.html

<signature-pad 
        (onSave)="onSaveHandler($event)" 
        (onClear)="onClearHandler()" 
        [width]="width" 
        [height]="height" 
        [hideFooter]="noFooter" 
        [formDataURL]="dataUrlVar" 
        [label]="label"></signature-pad>

Example

You can find a working example inside the demo directory.

To serve it locally, run:

git clone https://github.com/dimpu/angular2-signature-pad.git

npm i

npm run demo.serve
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].