Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gentelella | 20,773 | 195 | 8 | 3 days ago | 4 | October 18, 2017 | 57 | mit | HTML | |
Free Bootstrap 4 Admin Dashboard Template | ||||||||||
Selectize.js | 12,933 | 600 | 105 | 25 days ago | 7 | July 12, 2018 | 51 | apache-2.0 | SCSS | |
Selectize is the hybrid of a textbox and <select> box. It's jQuery based, and it has autocomplete and native-feeling keyboard navigation; useful for tagging, contact lists, etc. | ||||||||||
Bootstrap Select | 9,736 | 965 | 326 | 6 days ago | 47 | April 20, 2022 | 293 | mit | JavaScript | |
:rocket: The jQuery plugin that brings select elements into the 21st century with intuitive multiselection, searching, and much more. | ||||||||||
Metro Ui Css | 6,992 | 8 | 4 | 5 days ago | 99 | June 23, 2022 | 68 | mit | CSS | |
Impressive component library for expressive web development! Build responsive projects on the web with the first front-end component library in Metro Style. And now there are even more opportunities every day! | ||||||||||
X Editable | 6,464 | 6 months ago | 622 | mit | JavaScript | |||||
In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery | ||||||||||
Vvvebjs | 5,594 | 3 days ago | 1 | January 27, 2018 | 202 | apache-2.0 | JavaScript | |||
Drag and drop website builder javascript library. | ||||||||||
Jquery Ui Bootstrap | 5,486 | 4 | 5 years ago | March 15, 2015 | 49 | HTML | ||||
A jQuery UI theme based on Twitter Bootstrap | ||||||||||
Bootstrap Fileinput | 5,258 | 1,182 | 35 | 3 months ago | 89 | August 17, 2022 | 14 | other | JavaScript | |
An enhanced HTML 5 file input for Bootstrap 5.x/4.x./3.x with file preview, multiple selection, and more features. | ||||||||||
Ruoyi | 4,005 | 18 days ago | 26 | mit | HTML | |||||
:tada: (RuoYi)官方仓库 基于SpringBoot的权限管理系统 易读易懂、界面简洁美观。 核心技术采用Spring、MyBatis、Shiro没有任何其它重度依赖。直接运行即可用 | ||||||||||
Bootstrap Multiselect | 3,620 | 82 | 21 | 2 months ago | 4 | August 01, 2021 | 302 | other | HTML | |
JQuery multiselect plugin based on Twitter Bootstrap. |
This version contains a native AngularJS directive based on bootstrap-colorpicker jQuery library.
No dependency on jQuery or jQuery plugin is required.
Previous releases:
$ npm install angular-bootstrap-colorpicker --save
$ bower install angular-bootstrap-colorpicker --save
Copy css/colorpicker.css
and js/bootstrap-colorpicker-module.js
.
Add a dependency to your app, for instance:
angular.module('myApp', ['colorpicker.module'])
Hex format
<input colorpicker type="text" ng-model="your_model" />
or
<input colorpicker="hex" type="text" ng-model="your_model" />
RGB format
<input colorpicker="rgb" type="text" ng-model="your_model" />
RBGA format
<input colorpicker="rgba" type="text" ng-model="your_model" />
As non input element
<div colorpicker ng-model="your_model"></div>
The color picker template with an input element
<input colorpicker colorpicker-with-input="true" type="text" ng-model="your_model" />
Position of the color picker (top, right, bottom, left).
<input colorpicker colorpicker-position="right" type="text" ng-model="your_model" />
The color picker in a fixed element
<input colorpicker colorpicker-fixed-position="true" 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" type="text" ng-model="your_model" />
The color picker in UI Bootstrap modal (the parent element position property must be set to relative)
<input colorpicker colorpicker-parent="true" type="text" ng-model="your_model" />
Binding the visibility of the color picker to a variable in the scope
<input colorpicker colorpicker-is-open="isOpen" type="text" ng-model="your_model" />
Auto hiding the color picker when a color has been selected
<input colorpicker colorpicker-close-on-select type="text" ng-model="your_model" />
Customize a size of the color picker saturation panel
<input colorpicker colorpicker-size="200" type="text" ng-model="your_model" />
Each color picker will emit the following events passing a data object in the following format:
{
name: '',
value: ''
}
Name is the string representation of ng-model and value is the current color.
A global selected event, will be fired when a color is selected from the saturation, hue or alpha slider.
Will be fired when a color is selected from the saturation slider.
Will be fired when a color is selected from the hue slider.
Will be fired when a color is selected from the alpha slider.
Will be fired when a color picker is opened.
Will be fired when a color picker is closed.