项目作者: bizdevfe

项目描述 :
jQuery Plugin Collections for Business
高级语言: JavaScript
项目地址: git://github.com/bizdevfe/biz-ui.git
创建时间: 2015-07-31T03:23:35Z
项目社区:https://github.com/bizdevfe/biz-ui

开源协议:MIT License

下载


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:

  1. npm install biz-ui --save
  2. bower install biz-ui --save

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

  1. entry: {
  2. // stuff
  3. vendor: ['jquery', 'biz-ui']
  4. }

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

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

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

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

Themes

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

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

or set bizui.theme all at once:

  1. bizui.theme = 'light-blue';

Iconfonts

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

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

Demos

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

Browser support

IE9+, Firefox, Chrome and Safari.

Build

  1. $ npm install
  2. $ gulp build

Get documentations

  1. $ gulp doc