jQuery评分插件jsRapStar
源码介绍
jsRapStar是一款jQuery评分插件。该jqurey评分插件取值可以精确到小数位,支持自定义评分样式,非常实用。 在页面中引入jquery和jsRapStar.js、jsRapStar.css文件。 使用一个 在页面DOM元素加载完毕之后,通过下面的方法来初始化该jQuery评分插件。 可以实用unicode字符来自定义星星。 可以自定义星星的颜色和高度等属性。 可以定义使用小数级评分数。 也可以禁止选择评分。 该jQuery评分插件的可用事件有: 该jQuery评分插件的github地址为:https://github.com/Thibor/jsRapStar简要教程
使用方法
<link href="css/jsRapStar.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jsRapStar.js"></script>
HTML
<div>
作为容器,在div上指定start
属性作为初始值。
<div id="example" start="3"></div>
初始化插件
$('#example').jsRapStar();
$('#example').jsRapStar({
star:'★'
});
$('#example').jsRapStar({
// color
colorFront: 'yellow',
// background color
colorBack: 'white',
// size in pixels
starHeight: 32
});
$('#example').jsRapStar({
step: true
});
$('#example').jsRapStar({
enabled: false
});
$('#example').jsRapStar({
onClick:function(score){
$(this)[0].StarF.css({color:'red'});
alert(score);
},
onMousemove:function(score){
$(this).attr('title','Rating: '+score);
}
});
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » jQuery评分插件jsRapStar
发表评论 取消回复