All Projects → bizdevfe → biz-ui

bizdevfe / biz-ui

Licence: MIT License
jQuery Plugin Collections for Business

Programming Languages

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

Projects that are alternatives of or similar to biz-ui

sim-tree
一个操作简单的基于jquery的树展示插件,支持异步展示子节点
Stars: ✭ 22 (-8.33%)
Mutual labels:  jquery-plugin
jqlouds
☁️ An awesome yet simple plugin for jquery that let's you create clouds on the fly.
Stars: ✭ 54 (+125%)
Mutual labels:  jquery-plugin
GaugeMeter
An elegant and dynamic animated graphical gauge meter built with jQuery. GaugeMeter.js is highly customizable and includes full-radial, semi-radial & arch dials.
Stars: ✭ 30 (+25%)
Mutual labels:  jquery-plugin
jquery.smartbox
基于jquery 的弹出层插件。官方文档:http://smartbox.huangsw.com/cn/introduce.html
Stars: ✭ 21 (-12.5%)
Mutual labels:  jquery-plugin
KeyboardDelimiter
jQuery Plugin for delimite pressed key on keyboard
Stars: ✭ 14 (-41.67%)
Mutual labels:  jquery-plugin
jquery-imageuploader-js
A JQuery plugin that provides an interface for managing a set of files to upload. Files will have a thumbnail preview and can be removed before the upload step.
Stars: ✭ 18 (-25%)
Mutual labels:  jquery-plugin
jquery.youtube-inview-autoplay
📺 A jQuery plugin that starts playing YouTube video when it's scrolled into the view and stops it when it's scrolled out
Stars: ✭ 13 (-45.83%)
Mutual labels:  jquery-plugin
ivia
A reactive & model-driven MVVM framework for jQuery with Vue-like interface.
Stars: ✭ 69 (+187.5%)
Mutual labels:  jquery-plugin
jq-ajax-progress
jQuery plugin that adds support of `progress` promise
Stars: ✭ 59 (+145.83%)
Mutual labels:  jquery-plugin
jquery-regexp-classes
$(elem).removeClass(regExp) and $(elem).hasClass(regExp)
Stars: ✭ 18 (-25%)
Mutual labels:  jquery-plugin
jquery.niceform
The jQuery plugin for validation and post form data to server
Stars: ✭ 16 (-33.33%)
Mutual labels:  jquery-plugin
provejs-jquery
An event based jQuery plugin for client-side validation of html forms.
Stars: ✭ 76 (+216.67%)
Mutual labels:  jquery-plugin
lazeemenu
Multi-level sidebar menu - JQuery plugin
Stars: ✭ 40 (+66.67%)
Mutual labels:  jquery-plugin
jQuery-Clock-Plugin
Turns a given dom element into a jQuery Clock that can take an initial timestamp instead of client system time, supports internationalization and PHP Style Format Characters, and is relatively independent from system clock
Stars: ✭ 70 (+191.67%)
Mutual labels:  jquery-plugin
intl-tel-input-rails
intl-tel-input for the Rails asset pipeline
Stars: ✭ 35 (+45.83%)
Mutual labels:  jquery-plugin
jquery.selectlistactions.js
jQuery.SelectListActions plugin allows you to perform several actions with HTML Select lists
Stars: ✭ 35 (+45.83%)
Mutual labels:  jquery-plugin
selectr
✅ The coolest jQuery select plugin you've never seen
Stars: ✭ 19 (-20.83%)
Mutual labels:  jquery-plugin
jqIpLocation
jqIpLocation – jQuery Plugin that returns the location of an IP address in JSON format
Stars: ✭ 18 (-25%)
Mutual labels:  jquery-plugin
ml-stack-nav
Customizable, responsive, accessible, easy-to-use multi-level stack navigation menu with slide effect.
Stars: ✭ 20 (-16.67%)
Mutual labels:  jquery-plugin
jquery-alphaindex
jQuery plugin to create alphabetical indexes for your lists
Stars: ✭ 12 (-50%)
Mutual labels:  jquery-plugin

BizUI - jQuery Plugin Collections for Business

NPM Version Build Status

NPM Stat

Dependence

jQuery 1.11.0+

Usage

Install the latest version of BizUI via npm or bower, adding it to your dependencies:

npm install biz-ui --save
bower install biz-ui --save

It's recommended to bundle BizUI into a vendor chunk in your project, webpack configration for example:

entry: {
    // stuff
    vendor: ['jquery', 'biz-ui']
}

If you're not using a build system, just include the css file and the js file together width jQuery in your page:

<link rel="stylesheet" type="text/css" href="jquery.bizui.css">
<script src="jquery.js"></script>
<script src="jquery.bizui.js"></script>

Use it in any module or global environment as jQuery plugins:

$('button').bizButton();
$('input').bizCalendar();

Themes

BizUI provides 19 themes, set the theme field in each component:

$('button').bizButton({
    theme: 'light-blue'
});

or set bizui.theme all at once:

bizui.theme = 'light-blue';

Iconfonts

Use iconfonts just like Google Material Design Icons in BizUI, for example:

<i class="biz-icon">3d_rotation</i>

Demos

http://bizdevfe.github.io/biz-ui/

Browser support

IE9+, Firefox, Chrome and Safari.

Build

$ npm install
$ gulp build

Get documentations

$ gulp doc
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].