Skip to content

Commit 2008bf6

Browse files
committed
first commit
0 parents  commit 2008bf6

File tree

5 files changed

+154
-0
lines changed

5 files changed

+154
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
node_modules

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Awe
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# vue-progressbar
2+
3+
# Demo
4+
5+
The demo page is [HERE](http://hilongjw.github.io/vue-progressbar/index.html).
6+
7+
# Requirements
8+
9+
- [Vue.js](https://github.com/yyx990803/vue) `^1.0.0`
10+
11+
# Instllation
12+
13+
## npm
14+
15+
```shell
16+
$ npm install vue-progressbar
17+
```
18+
19+
# Usage
20+
21+
```html
22+
<!-- your component -->
23+
<script>
24+
import progress from 'vue-progressbar'
25+
26+
export default {
27+
data() {
28+
return {
29+
precent: 0,
30+
options: {
31+
color: '#73ccec',
32+
height: '2px'
33+
}
34+
}
35+
},
36+
components: {
37+
progress
38+
},
39+
ready() {
40+
setInterval(() => {
41+
this.precent++
42+
if (this.precent > 100) {
43+
this.precent = 0
44+
}
45+
}, 100)
46+
}
47+
}
48+
</script>
49+
50+
<template>
51+
<progress :precent="precent" :options="options" />
52+
</template>
53+
54+
```
55+
56+
# API
57+
58+
59+
# License
60+
61+
[The MIT License](http://opensource.org/licenses/MIT)
62+

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "vue-progressbar",
3+
"version": "0.1.0",
4+
"description": "",
5+
"main": "vue-progressbar.vue",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/hilongjw/vue-progressbar.git"
12+
},
13+
"keywords": [
14+
"vue",
15+
"vue-progressbar",
16+
"vue loading progress",
17+
"vue progressbar",
18+
"progressbar",
19+
],
20+
"author": "Awe",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/hilongjw/vue-progressbar/issues"
24+
},
25+
"homepage": "https://github.com/hilongjw/vue-progressbar#readme",
26+
}

vue-progressbar.vue

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<script>
2+
export default {
3+
props:{
4+
precent: {
5+
type: Number,
6+
required: true
7+
},
8+
options: {
9+
type: Object,
10+
default(){
11+
return {
12+
color: '#73ccec',
13+
height: '2px'
14+
}
15+
}
16+
}
17+
}
18+
}
19+
</script>
20+
<style scoped>
21+
.cov-progress {
22+
position: fixed;
23+
top: 0px;
24+
left: 0px;
25+
right: 0px;
26+
height: 2px;
27+
width: 0%;
28+
transition: width 0.2s, opacity 0.6s;
29+
opacity: 1;
30+
background-color: #73ccec;
31+
}
32+
</style>
33+
<template>
34+
<div
35+
class="cov-progress"
36+
:style="{
37+
'width': precent+'%',
38+
'height': options.height,
39+
'background-color': options.color,
40+
}"
41+
>
42+
</div>
43+
</template>

0 commit comments

Comments
 (0)