Animated Responsive Skill Bar Plugin jQuery Simple SkillBar - Download Animated Responsive Skill Bar Plugin For jQuery - Simple SkillBar

Download Animated Responsive Skill Bar Plugin For jQuery – Simple SkillBar

Posted on

This time I will share jQuery Plugin and tutorial about Animated Responsive Skill Bar Plugin For jQuery – Simple SkillBar, hope it will help you in programming stack.

Animated Responsive Skill Bar Plugin jQuery Simple SkillBar - Download Animated Responsive Skill Bar Plugin For jQuery - Simple SkillBar
File Size: 3.45 KB
Views Total: 7253
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   

A super lightweight jQuery plugin used for rendering animated, horizontal, progressbar-style bars to showcase your skill/experience set in percentage.

How to use it:

1. Place the JavaScript file simple-skillbar.js after jQuery library and the Simple SkillBar is ready for use.

1 <script src="//code.jquery.com/jquery.3.1.1.slim.min.js"></script>
2 <script src="simple-skillbar.js"></script>

2. Create a basic skill bar and define the percentage value using JavaScript:

1 <div id="skill">JavaScript (80%)</div>
1 $('#skill').simpleSkillbar({
2   width: 80 // 80%
3 });

3. Create a basic skill bar and define the percentage value using JavaScript:

1 <div id="skill">JavaScript (80%)</div>
1 $('#skill').simpleSkillbar({
2   width: 80 // 80%
3 });

4. Or via HTML5 data attribute as this:

1 <div id="skill" data-width="80">JavaScript (80%)</div>
1 $('#skill').simpleSkillbar();

5. More JS settings and data attributes to customize your skill bar.

01 $('#skill').simpleSkillbar({
02  
03   // or data-height='30'
04   height: 30,
05  
06   // or data-text-color='#fff'
07   text-color: '#fff',
08  
09   // or data-text-background='#337ab7'
10   text-background: '#337ab7',
11  
12 });

This awesome jQuery plugin is developed by leonhards. For more Advanced Usages, please check the demo page or visit the official website.

source : jqueryscript.net