nanobar

Very lightweight progress bars. No jQuery

Github星跟踪图

nanobar

Very lightweight progress bars (~699 bytes gzipped).

Compatibility: iE7+ and the rest of the world

npm version Bower version

Demo

See nanobar.jacoborus.codes

Installation

Download and extract the latest release or install with package manager:

Bower:

$ bower install nanobar

npm:

$ npm install nanobar

Usage

Load

Link nanobar.js from your html file

<script src="path/to/nanobar.min.js"></script>

or require it:

var Nanobar = require('path/to/nanobar');

Generate progressbar

var nanobar = new Nanobar( options );

options

  • id <String>: (optional) id for nanobar div
  • classname <String>: (optional) class for nanobar div
  • target <DOM Element>: (optional) Where to put the progress bar, nanobar will be fixed to top of document if no target is passed

Move bar

Resize the bar with nanobar.go(percentage)

arguments

  • percentage <Number> : percentage width of nanobar

Example

Create bar

var options = {
	classname: 'my-class',
  id: 'my-id',
	target: document.getElementById('myDivId')
};

var nanobar = new Nanobar( options );

//move bar
nanobar.go( 30 ); // size bar 30%
nanobar.go( 76 ); // size bar 76%

// size bar 100% and and finish
nanobar.go(100);

Customize bars

Nanobar injects a style tag in your HTML head. Bar divs has class .bar, and its containers .nanobar, so you can overwrite its values.

Default css:

.nanobar {
  width: 100%;
  height: 4px;
  z-index: 9999;
  top:0
}
.bar {
  width: 0;
  height: 100%;
  transition: height .3s;
  background:#000;
}

You should know what to do with that ;)


© 2016 jacoborus - Released under MIT License

概览

名称与所有者jacoborus/nanobar
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台
许可证MIT License
发布数12
最新版本名称v0.4.2 (发布于 2016-05-03 20:06:52)
第一版名称v0.0.1 (发布于 2014-02-23 17:31:00)
创建于2014-02-23 11:55:14
推送于2020-03-01 17:11:34
最后一次提交2017-06-07 19:31:27
星数2.8k
关注者数56
派生数278
提交数63
已启用问题?
问题数39
打开的问题数8
拉请求数11
打开的拉请求数6
关闭的拉请求数8
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?
去到顶部