`
limingnihao
  • 浏览: 1824426 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

使用jQuery实现点评星星效果

阅读更多

使用jQuery实现点评星星效果


 


 

 

没什么好说的,直接上代码吧

 

1. html代码

 

<table class="block">
	<tr>
		<td>
			<span class="label">总体评价<em>*</em>:</span>
		</td>
		<td>
			<div class="rating-wrap">
				<ul class="rating-wrap-ul"  onmouseout="onUlMouseOut()" onmouseover="onUlMouseOver()">
					<li><a class="one-star" title="很差" data-hint="很差" href="javascript:clickStar(1);" onmouseover="onLiMouseOver(1)" onmouseout="onLiMouseOut()"></a></li>
					<li><a class="two-stars" title="差" data-hint="差" href="javascript:clickStar(2);" onmouseover="onLiMouseOver(2)" onmouseout="onLiMouseOut()"></a></li>
					<li><a class="three-stars" title="还行" data-hint="还行" href="javascript:clickStar(3);" onmouseover="onLiMouseOver(3)" onmouseout="onLiMouseOut()"></a></li>
					<li><a class="four-stars" title="好" data-hint="好" href="javascript:clickStar(4);" onmouseover="onLiMouseOver(4)" onmouseout="onLiMouseOut()"></a></li>
					<li><a class="five-stars" title="很好" data-hint="很好" href="javascript:clickStar(5);" onmouseover="onLiMouseOver(5)" onmouseout="onLiMouseOut()"></a></li>
				</ul>
			</div>
			<span id="ratingText" class="active-hint" innerText=""></span>
		</td>
	</tr>
	<tr>
		<td>
			<span class="label">评价<em>*</em>:</span>
		</td>
		<td>
			<span class="note">(50-2000个字)</span>
			<span id="textCount" class="note" innerText=""></span>
		</td>
	</tr>
	<tr>
		<td>
		</td>
		<td>
			<textarea name="appraiseText" id="appraiseText" class="form-content-block form-textarea" rows="12"></textarea>
		</td>
	</tr>
	<tr>
		<td>
		</td>
		<td align="right">
			<input type="button" value="提交" onclick="submitAppraise()">
			<input type="button" value="关闭" onclick=" ">
		</td>
	</tr>
</table>

 

 

2. 所需要的css

 

body {
	color: #333;
	font: normal normal normal 12px/1.5 Arial, 宋体, sans-serif;
}
.block{
	clear: both;
	margin-bottom:20px;
	margin-bottom: 10px;
	zoom: 1;
	padding:5px 11px;border:1px solid #F5EEE8;
	padding-top:10px;margin:0 10px 0;
	padding-bottom:20px;border-bottom:1px dashed #E4E4E4;
	margin:10px auto;padding:0;border:none;
}

.label{
	float:right;
	margin-right: 10px;
	text-align: right;
	font-weight: normal;
	font-style:normal;
	width: 94px;
}
em{
	margin-right:5px;
	color:#c00;
	font-weight:bold;
	font-style:normal;
	margin-left:2px;
}
.note {
	color: #999;
}

.form-textarea{
	float: left;
	font-family: Tahoma, Geneva, sans-serif;
	margin-right: 5px;
	width: 598px;
	zoom: 1;
	font-family: inherit;
	font-size: 100%;
	-webkit-appearance: textarea;
	-webkit-box-orient: vertical;
	-webkit-rtl-ordering: logical;
	-webkit-user-select: text;
	background-color: white;
	border: 1px solid;
	cursor: auto;
	padding: 2px;
	resize: auto;
	white-space: pre-wrap;
	word-wrap: break-word;
}
		
.rating-wrap {
	display: inline-block;
	float: left;
	position: relative;
	top: -2px;
	width: 89px;
	height: 20px;
	margin-right: 5px;
	padding: 4px 0 0 5px;
	border: 1px solid #EFE0D7;
	background: #FFF9F1;
	z-index: 0;
}
.rating-wrap ul,.rating-wrap a:hover {
	background-image: url(../images/star_shade.png);
	background-repeat: no-repeat;
}

.rating-wrap ul {
	-webkit-padding-start: 40px;
	display: block;
	list-style-type: disc;
	margin: 1em 0px;
	border: 0px;
	margin: 0px;
	outline: 0px;
	padding: 0px;
	list-style: none;
	position: relative;
	width: 85px;
	height: 16px;
	background-position: 0 -90px;
	z-index: 10;
}

.rating-wrap li {
	display: inline;
}

.rating-wrap a {
	zoom: 1;
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	height: 16px;
}

.rating-wrap .five-stars {
	width: 84px;
	z-index: 10;
	background-position: 0 0px;
}

.rating-wrap .four-stars {
	width: 68px;
	z-index: 20;
	background-position: 0 -18px;
}

.rating-wrap .three-stars {
	width: 51px;
	z-index: 30;
	background-position: 0 -36px;
}

.rating-wrap .two-stars {
	width: 34px;
	z-index: 40;
	background-position: 0 -54px;
}

.rating-wrap .one-star {
	width: 17px;
	z-index: 50;
	background-position: 0 -72px;
}

.active-hint{
	color: #C00;
	float: left;
	padding-top:2px;
	font-weight: normal;
	font-style:normal;
}

 

 

3. 所需要的javascript代码

 

$(document).ready(function(){
	$("#appraiseText").bind("keydown", function(){
		var count = $("#appraiseText").val().length;
		if( count <= 200 ){
			$("#textCount").html(" 还能输入<font color='green'><b>" + (200 - count) + "</b></font>个字");
		}else{
			$("#textCount").html(" 已超出<font color='red'><b>" + (count - 200) + "</b></font>个字");
		}
	});	
});

var starValue=0;
function onUlMouseOut(){
	var y = -90 + starValue * 18;
	var position = "0 " + y + "px";
	$(".rating-wrap-ul").css({
		"background-position" : position
	});
}

function onUlMouseOver(){
	$(".rating-wrap-ul").css({
		"background-position" : "0 -90px"
	});
}
function onLiMouseOver(grade){
	switch(grade){
		case 1 : document.getElementById("ratingText").innerHTML="很差";break;
		case 2 : document.getElementById("ratingText").innerHTML="差";break;
		case 3 : document.getElementById("ratingText").innerHTML="还行";break;
		case 4 : document.getElementById("ratingText").innerHTML="好";break;
		case 5 : document.getElementById("ratingText").innerHTML="很好";break;
		default :  document.getElementById("ratingText").innerHTML="";
	}
}
function onLiMouseOut(){
	onLiMouseOver(starValue);
}
function clickStar(grade){
	starValue = grade;		
	var y = -90 + grade * 18;
	var position = "0 " + y + "px";
	$(".rating-wrap-ul").css({
		"background-position" : position
	});
}
 

 

 

 

  • 大小: 2.7 KB
  • 大小: 2.3 KB
2
0
分享到:
评论

相关推荐

    jquery点评网星星评论

    本篇将详细介绍如何使用jQuery实现一个简单的星星评论系统,以及该系统中可能涉及的关键技术点。 首先,`index.html`是网页的主体部分,它通常包含HTML结构,用于展示评论区域。在这个系统中,HTML可能包含了多个`...

    几十种 jquery、js 星星评价控件 合集

    此合集聚焦于jQuery和JavaScript实现的星星评价控件,提供了多种样式和评分规则,适用于各种在线评级场景,如产品评价、服务评分等。 jQuery和JavaScript是Web开发中广泛使用的两种技术。jQuery是一个轻量级的...

    点评星星 星星颗粒 点评模版

    在压缩包文件"点评星星"中,可能包含了实现这个功能所需的全部资源,如CSS样式文件、JavaScript脚本、图片素材等。为了在自己的项目中使用这个模版,开发者需要将这些文件引入到自己的代码中,并根据需求进行相应的...

    用jq来实现外卖等评价的样式(五星好评)

    在本文中,我们将深入探讨如何使用jQuery库来实现一个类似于外卖评价系统中的五星好评...记住,实践是提高技能的关键,所以不妨动手尝试一下,不断修改和完善你的代码,最终你将能够熟练地使用jQuery实现类似的功能。

    jQuery基于ajax实现星星评论代码

    这里使用jquery模仿点评网的星星评论功能,Ajax评论模块,鼠标点击星星即可评价,下边是分数,可以点击后给分,网上很流行的效果,本代码相对完整,相信很多朋友会喜欢的。 先来看看运行效果截图: 具体代码如下: ...

    点评实用星星打分

    总结来说,实现“点评实用星星打分”效果涉及HTML结构、CSS样式和JavaScript交互三大部分。通过合理的代码组织和优化,我们可以创建一个既美观又实用的星星打分系统,为用户提供直观的反馈工具。在实际项目中,还...

    jQuery鼠标星级打分特效.zip

    本示例“jQuery鼠标星级打分特效”就是一个典型的利用jQuery实现的用户评分功能,它能为网站的评论、评价系统增添互动性。 首先,我们来详细了解一下这个特效的基本概念。星级打分特效允许用户通过鼠标悬停或点击...

    带评论的星星评分代码.rar_带评论的星星评分代码

    1. **动态效果实现**:当用户鼠标悬停在星星上时,jQuery会捕获这个事件,并实时改变被选中的星星状态,通常通过修改CSS类实现星星的高亮。同时,系统还会预览当前选择的评分,这通常通过计算鼠标位置与星星的相对...

    jq点评网星级评论.zip

    【jQuery点评网星级评论】是一种基于JavaScript库jQuery实现的交互式星级评论系统。这个系统主要用于网站用户对产品或服务进行评级,提供了一种直观、易用的反馈方式。通过使用jQuery,开发人员可以轻松地创建动态、...

    仿淘宝星星评论打分样式,可ajax同步到数据库

    2. **JavaScript/jQuery实现**: - 通过JavaScript或jQuery监听用户的鼠标事件(如`mouseover`、`mouseout`和`click`),当用户在星星上移动或点击时,动态改变选中星星的样式。 - 实现平滑过渡效果,可以使用CSS3...

    jquery星级打分

    本篇将详细讲解如何使用jQuery实现一个功能完善的星级打分系统,适用于评论、效果、点评等场景。 ### 一、HTML结构基础 在构建星级打分组件前,我们需要先准备好HTML结构。通常,我们会使用`&lt;input&gt;`标签的`type=...

    jq点评网星级评论特效代码

    jQuery点评网星级评论特效代码实现了以下主要功能: 1. **动态渲染**:根据后台数据或默认设置,动态生成带有不同填充状态的星星,展示评论的平均分或用户自定义的评分。 2. **鼠标悬停效果**:当鼠标悬停在星星上...

Global site tag (gtag.js) - Google Analytics