jrating
v1.0.1
Published
Rating UI component
Downloads
7
Readme
jRating
Rating UI component
Introduction
Install
npm install jrating
Usage
The following HTML structure is used for the carrousel:
<link rel="stylesheet" href="jRating.css">
<!-- ... -->
<span class="jRating" id="jRating1">
<span class="jRating-star" index="0"></span>
<span class="jRating-star" index="1"></span>
<span class="jRating-star" index="2"></span>
<span class="jRating-star" index="3"></span>
<span class="jRating-star" index="4"></span>
<span class="jRating-number"></span>
</span>
<!-- ... -->
<script src="jRating.js"></script>
And this is how the jRating is initialized:
new JRating(document.getElementById('jRating1'), 4.5, true);
The following options are available:
// jRating element
ele : document.getElementById('jRating1'),
// rating default value
value : 4.5,
// editable
editable : true
LICENSE
(MIT License)
Copyright (c) DIYgod
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.