Skip to content
This repository has been archived by the owner on Feb 10, 2022. It is now read-only.

Native AngularJS colorpicker directive. No dependency on jQuery or jQuery plugin is required.

License

Notifications You must be signed in to change notification settings

Jimdo/angular-bootstrap-colorpicker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

angular-bootstrap-colorpicker

This version contains a native AngularJS directive based on bootstrap-colorpicker jQuery library.
No dependency on jQuery or jQuery plugin is required.

Demo page (Bootstrap v3.x.x)

Previous releases:

  • branch 2.0 (Bootstrap v2.x.x)
  • branch 1.0 if you need a functionality from the original plugin or IE<9 support

Installation

Copy css/colorpicker.css and js/bootstrap-colorpicker-module.js. Add a dependency to your app, for instance: angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives', 'myApp.controllers', 'colorpicker.module'])

Examples:

Hex format

<input colorpicker class="span2" type="text" ng-model="your_model" />

or

<input colorpicker="hex" class="span2" type="text" ng-model="your_model" />

RGB format

<input colorpicker="rgb" class="span2" type="text" ng-model="your_model" />

RBGA format

<input colorpicker="rgba" class="span2" type="text" ng-model="your_model" />

As non input element

<div colorpicker class="span2" ng-model="your_model"></div>

Position of the color picker (top, right, bottom, left).

<input colorpicker colorpicker-position="right" class="span2" type="text" ng-model="your_model" />

The color picker in a fixed element

<input colorpicker colorpicker-fixed-position="true" class="span2" type="text" ng-model="your_model" />

When using fixed positioning, you can also put the picker into the parent element (this allows more styling control)

<input colorpicker colorpicker-fixed-position="true" colorpicker-parent="true" class="span2" type="text" ng-model="your_model" />

About

Native AngularJS colorpicker directive. No dependency on jQuery or jQuery plugin is required.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 77.3%
  • JavaScript 21.9%
  • Shell 0.8%