Minimalist jQuery Slider Component Amino Slider - Download Minimalist jQuery Slider Component - Amino Slider

Download Minimalist jQuery Slider Component – Amino Slider

Posted on

This time I will share jQuery Plugin and tutorial about Minimalist jQuery Slider Component – Amino Slider, hope it will help you in programming stack.

Minimalist jQuery Slider Component Amino Slider - Download Minimalist jQuery Slider Component - Amino Slider
File Size: 4.61 KB
Views Total: 1317
Last Update:
Publish Date:
Official Website: Go to website
License: MIT
   



Amino Slider is an ultra-lightweight jQuery plugin that helps you create flat, horizontal sliders for easy numeric value selection.

How to use it:

1. Include the jQuery Amino Slider plugin’s CSS in the head section of the html page.

1 <link rel="stylesheet" href="css/amino-slider.css">

2. The required markup structure for the slider.

1 <amino-slider class="slider" data-min="0" data-max="100" data-value="10"></amino-slider>

3. Include jQuery Amino Slider plugin’s JavaScript file after jQuery library but before the closing body tag.

1 <script src="//code.jquery.com/jquery-2.2.0.min.js"></script>
2 <script src="js/jq.aminoSlider.js"></script>

4. Initialize the slider plugin. That’s it.

1 (function($) {
2   "use strict";
3    
4   //Select the slider element.
5   var $slider = $('.slider');
6    
7   $slider.aminoSlider();
8    
9 })(jQuery);

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




source : jqueryscript.net