五角星评分html代码

时间: 2024-06-09 15:03:25 浏览: 153
在HTML中,创建一个五角星评分系统通常会使用HTML元素和CSS样式相结合。下面是一个简单的例子,展示如何使用HTML结构以及一些基本的CSS来实现五角星评分: ```html <!DOCTYPE html> <html lang="en"> <head> <style> .star-container { display: inline-block; position: relative; } .star-fill { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: #ccc; /* 默认灰色 */ } .filled-star::before { content: "\2605"; font-size: 24px; color: gold; } .filled-star { cursor: pointer; } .filled-star:hover ~ .star-fill { width: 90%; } .filled-star:active ~ .star-fill { width: 80%; } </style> </head> <body> <div class="star-container"> <i class="filled-star" title="1 star"></i> <span class="star-fill"></span> <i class="filled-star" title="2 stars"></i> <span class="star-fill"></span> <i class="filled-star" title="3 stars"></i> <span class="star-fill"></span> <i class="filled-star" title="4 stars"></i> <span class="star-fill"></span> <i class="filled-star" title="5 stars"></i> <span class="star-fill"></span> </div> </body> </html> ``` 这个例子中: - `.star-container` 是一个包含所有星星的容器,使用`display: inline-block`使其成为行内块级元素。 - `.star-fill` 是一个隐藏的span元素,用于实现鼠标悬停和点击效果。 - `.filled-star` 是每个填充的星星,`::before`伪元素用于显示星号图标。 - 使用CSS的`:hover`和`:active`伪类,当鼠标悬停或点击时,对应填充的宽度逐渐增加,模拟评分效果。

相关推荐

rar
;(function($) { var methods = { init: function(settings) { return this.each(function() { var self = this, $this = $(self).empty(); self.opt = $.extend(true, {}, $.fn.raty.defaults, settings); $this.data('settings', self.opt); self.opt.number = methods.between(self.opt.number, 0, 20); if (self.opt.path.substring(self.opt.path.length - 1, self.opt.path.length) != '/') { self.opt.path += '/'; } if (typeof self.opt.score == 'function') { self.opt.score = self.opt.score.call(self); } if (self.opt.score) { self.opt.score = methods.between(self.opt.score, 0, self.opt.number); } for (var i = 1; i <= self.opt.number; i++) { $('', { src : self.opt.path + ((!self.opt.score || self.opt.score < i) ? self.opt.starOff : self.opt.starOn), alt : i, title : (i <= self.opt.hints.length && self.opt.hints[i - 1] !== null) ? self.opt.hints[i - 1] : i }).appendTo(self); if (self.opt.space) { $this.append((i < self.opt.number) ? ' ' : ''); } } self.stars = $this.children('img:not(".raty-cancel")'); self.score = $('<input />', { type: 'hidden', name: self.opt.scoreName }).appendTo(self); if (self.opt.score && self.opt.score > 0) { self.score.val(self.opt.score); methods.roundStar.call(self, self.opt.score); } if (self.opt.iconRange) { methods.fill.call(self, self.opt.score); } methods.setTarget.call(self, self.opt.score, self.opt.targetKeep); var space = self.opt.space ? 4 : 0, width = self.opt.width || (self.opt.number * self.opt.size + self.opt.number * space); if (self.opt.cancel) { self.cancel = $('', { src: self.opt.path + self.opt.cancelOff, alt: 'x', title: self.opt.cancelHint, 'class': 'raty-cancel' }); if (self.opt.cancelPlace == 'left') { $this.prepend(' ').prepend(self.cancel); } else { $this.append(' ').append(self.cancel); } width += (self.opt.size + space); } if (self.opt.readOnly) { methods.fixHint.call(self); if (self.cancel) { self.cancel.hide(); } } else { $this.css('cursor', 'pointer'); methods.bindAction.call(self); } $this.css('width', width); }); }, between: function(value, min, max) { return Math.min(Math.max(parseFloat(value), min), max); }, bindAction: function() { var self = this, $this = $(self); $this.mouseleave(function() { var score = self.score.val() || undefined; methods.initialize.call(self, score); methods.setTarget.call(self, score, self.opt.targetKeep); if (self.opt.mouseover) { self.opt.mouseover.call(self, score); } }); var action = self.opt.half ? 'mousemove' : 'mouseover'; if (self.opt.cancel) { self.cancel.mouseenter(function() { $(this).attr('src', self.opt.path + self.opt.cancelOn); self.stars.attr('src', self.opt.path + self.opt.starOff); methods.setTarget.call(self, null, true); if (self.opt.mouseover) { self.opt.mouseover.call(self, null); } }).mouseleave(function() { $(this).attr('src', self.opt.path + self.opt.cancelOff); if (self.opt.mouseover) { self.opt.mouseover.call(self, self.score.val() || null); } }).click(function(evt) { self.score.removeAttr('value'); if (self.opt.click) { self.opt.click.call(self, null, evt); } }); } self.stars.bind(action, function(evt) { var value = parseInt(this.alt, 10); if (self.opt.half) { var position = parseFloat((evt.pageX - $(this).offset().left) / self.opt.size), diff = (position > .5) ? 1 : .5; value = parseFloat(this.alt) - 1 + diff; methods.fill.call(self, value); if (self.opt.precision) { value = value - diff + position; } methods.showHalf.call(self, value); } else { methods.fill.call(self, value); } $this.data('score', value); methods.setTarget.call(self, value, true); if (self.opt.mouseover) { self.opt.mouseover.call(self, value, evt); } }).click(function(evt) { self.score.val((self.opt.half || self.opt.precision) ? $this.data('score') : this.alt); if (self.opt.click) { self.opt.click.call(self, self.score.val(), evt); } }); }, cancel: function(isClick) { return $(this).each(function() { var self = this, $this = $(self); if ($this.data('readonly') === true) { return this; } if (isClick) { methods.click.call(self, null); } else { methods.score.call(self, null); } self.score.removeAttr('value'); }); }, click: function(score) { return $(this).each(function() { if ($(this).data('readonly') === true) { return this; } methods.initialize.call(this, score); if (this.opt.click) { this.opt.click.call(this, score); } else { methods.error.call(this, 'you must add the "click: function(score, evt) { }" callback.'); } methods.setTarget.call(this, score, true); }); }, error: function(message) { $(this).html(message); $.error(message); }, fill: function(score) { var self = this, number = self.stars.length, count = 0, $star , star , icon ; for (var i = 1; i <= number; i++) { $star = self.stars.eq(i - 1); if (self.opt.iconRange && self.opt.iconRange.length > count) { star = self.opt.iconRange[count]; if (self.opt.single) { icon = (i == score) ? (star.on || self.opt.starOn) : (star.off || self.opt.starOff); } else { icon = (i <= score) ? (star.on || self.opt.starOn) : (star.off || self.opt.starOff); } if (i <= star.range) { $star.attr('src', self.opt.path + icon); } if (i == star.range) { count++; } } else { if (self.opt.single) { icon = (i == score) ? self.opt.starOn : self.opt.starOff; } else { icon = (i <= score) ? self.opt.starOn : self.opt.starOff; } $star.attr('src', self.opt.path + icon); } } }, fixHint: function() { var $this = $(this), score = parseInt(this.score.val(), 10), hint = this.opt.noRatedMsg; if (!isNaN(score) && score > 0) { hint = (score <= this.opt.hints.length && this.opt.hints[score - 1] !== null) ? this.opt.hints[score - 1] : score; } $this.data('readonly', true).css('cursor', 'default').attr('title', hint); this.score.attr('readonly', 'readonly'); this.stars.attr('title', hint); }, getScore: function() { var score = [], value ; $(this).each(function() { value = this.score.val(); score.push(value ? parseFloat(value) : undefined); }); return (score.length > 1) ? score : score[0]; }, readOnly: function(isReadOnly) { return this.each(function() { var $this = $(this); if ($this.data('readonly') === isReadOnly) { return this; } if (this.cancel) { if (isReadOnly) { this.cancel.hide(); } else { this.cancel.show(); } } if (isReadOnly) { $this.unbind(); $this.children('img').unbind(); methods.fixHint.call(this); } else { methods.bindAction.call(this); methods.unfixHint.call(this); } $this.data('readonly', isReadOnly); }); }, reload: function() { return methods.set.call(this, {}); }, roundStar: function(score) { var diff = (score - Math.floor(score)).toFixed(2); if (diff > this.opt.round.down) { var icon = this.opt.starOn; // Full up: [x.76 .. x.99] if (diff < this.opt.round.up && this.opt.halfShow) { // Half: [x.26 .. x.75] icon = this.opt.starHalf; } else if (diff < this.opt.round.full) { // Full down: [x.00 .. x.5] icon = this.opt.starOff; } this.stars.eq(Math.ceil(score) - 1).attr('src', this.opt.path + icon); } // Full down: [x.00 .. x.25] }, score: function() { return arguments.length ? methods.setScore.apply(this, arguments) : methods.getScore.call(this); }, set: function(settings) { this.each(function() { var $this = $(this), actual = $this.data('settings'), clone = $this.clone().removeAttr('style').insertBefore($this); $this.remove(); clone.raty($.extend(actual, settings)); }); return $(this.selector); }, setScore: function(score) { return $(this).each(function() { if ($(this).data('readonly') === true) { return this; } methods.initialize.call(this, score); methods.setTarget.call(this, score, true); }); }, setTarget: function(value, isKeep) { if (this.opt.target) { var $target = $(this.opt.target); if ($target.length == 0) { methods.error.call(this, 'target selector invalid or missing!'); } var score = value; if (!isKeep || score === undefined) { score = this.opt.targetText; } else { if (this.opt.targetType == 'hint') { score = (score === null && this.opt.cancel) ? this.opt.cancelHint : this.opt.hints[Math.ceil(score - 1)]; } else { score = this.opt.precision ? parseFloat(score).toFixed(1) : parseInt(score, 10); } } if (this.opt.targetFormat.indexOf('{score}') < 0) { methods.error.call(this, 'template "{score}" missing!'); } if (value !== null) { score = this.opt.targetFormat.toString().replace('{score}', score); } if ($target.is(':input')) { $target.val(score); } else { $target.html(score); } } }, showHalf: function(score) { var diff = (score - Math.floor(score)).toFixed(1); if (diff > 0 && diff < .6) { this.stars.eq(Math.ceil(score) - 1).attr('src', this.opt.path + this.opt.starHalf); } }, initialize: function(score) { score = !score ? 0 : methods.between(score, 0, this.opt.number); methods.fill.call(this, score); if (score > 0) { if (this.opt.halfShow) { methods.roundStar.call(this, score); } this.score.val(score); } }, unfixHint: function() { for (var i = 0; i < this.opt.number; i++) { this.stars.eq(i).attr('title', (i < this.opt.hints.length && this.opt.hints[i] !== null) ? this.opt.hints[i] : i); } $(this).data('readonly', false).css('cursor', 'pointer').removeAttr('title'); this.score.attr('readonly', 'readonly'); } }; $.fn.raty = function(method) { if (methods[method]) { return methods[method].apply(this, Array.prototype.slice.call(arguments, 1)); } else if (typeof method === 'object' || !method) { return methods.init.apply(this, arguments); } else { $.error('Method ' + method + ' does not exist!'); } }; $.fn.raty.defaults = { cancel : false, cancelHint : 'cancel this rating!', cancelOff : 'cancel-off.png', cancelOn : 'cancel-on.png', cancelPlace : 'left', click : undefined, half : false, halfShow : true, hints : ['10', '20', '30', '40', '50', '60', '70', '80', '90', '100' ], iconRange : undefined, mouseover : undefined, noRatedMsg : 'not rated yet', number : 10, path : 'img/', precision : false, round : { down: .25, full: .6, up: .76 }, readOnly : false, score : undefined, scoreName : 'score', single : false, size : 16, space : true, starHalf : 'star-half.png', starOff : 'star-off.png', starOn : 'star-on.png', target : undefined, targetFormat : '{score}', targetKeep : false, targetText : '', targetType : 'hint', width : undefined }; })(jQuery);

最新推荐

recommend-type

vue 实现类似淘宝星级评分的示例

这篇示例展示了如何使用 Vue 实现类似淘宝星级评分的示例,包括 HTML 结构、CSS 样式和 JavaScript 代码。这篇示例具有很好的参考价值,希望对大家有所帮助。 在实际应用中,这篇示例可以用于实现星级评分的功能,...
recommend-type

考研复习-英语二真题考试题集-带答案

英语二考研真题复习资料,带答案版
recommend-type

OptiX传输试题与SDH基础知识

"移动公司的传输试题,主要涵盖了OptiX传输设备的相关知识,包括填空题和选择题,涉及SDH同步数字体系、传输速率、STM-1、激光波长、自愈保护方式、设备支路板特性、光功率、通道保护环、网络管理和通信基础设施的重要性、路由类型、业务流向、故障检测以及SDH信号的处理步骤等知识点。" 这篇试题涉及到多个关键的传输技术概念,首先解释几个重要的知识点: 1. SDH(同步数字体系)是一种标准的数字传输体制,它将不同速率的PDH(准同步数字体系)信号复用成一系列标准速率的信号,如155M、622M、2.5G和10G。 2. STM-1(同步传输模块第一级)是SDH的基本传输单元,速率为155Mbps,能容纳多个2M、34M和140M业务。 3. 自愈保护机制是SDH的重要特性,包括通道保护、复用段保护和子网连接保护,用于在网络故障时自动恢复通信,确保服务的连续性。 4. OptiX设备的支路板支持不同阻抗(75Ω和120Ω)和环回功能,环回测试有助于诊断和定位问题。 5. 光功率的度量单位dBm,0dBm表示光功率为1毫瓦。 6. 单向通道保护环在光纤中断时能够快速切换,保持业务不中断。例如,A-C业务在A-B光纤中断时仍能保持。 7. 传输网是通信基础设施的核心,对于信息的传送至关重要。 8. 映射、定位和复用是将PDH信号融入SDH帧结构的关键步骤,其中映射是将低速信号放入高速信号的容器,定位则是确保信号在正确的时间位置发送,复用则是在更高层次的信号中组合多个低速信号。 9. 单向通道保护环带链的拓扑结构中,环上交叉点站需要配置额外的光板来支持不同方向的业务。 10. 时钟的工作模式中,通常锁相模式(GPS同步)具有最高的精度,能提供稳定的系统定时。 这些知识点不仅适用于移动公司的传输网络维护,也是理解现代通信网络基础架构的关键。掌握这些概念和技术,对于网络工程师来说至关重要,能够有效提升网络的稳定性和可靠性。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

MATLAB Genetic Algorithm Function Optimization: Four Efficient Implementation Methods

# Genetic Algorithm Function Optimization in MATLAB: Four Efficient Methods ## 1. Fundamental Theory of Genetic Algorithms Genetic algorithms are optimization algorithms that simulate natural selection and genetics. They excel at solving optimization and search problems by effectively locating hig
recommend-type

java输 入n 用 * 打 出 直 角 三 角 形(n 为长和高)

在Java中,你可以通过嵌套循环来打印出指定长度n的直角三角形。这里是一个简单的示例: ```java import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print("请输入三角形的边长(n): "); int n = scanner.nextInt(); // 打印上半部分星号
recommend-type

C++Builder函数详解与应用

"C++Builder函数一览" C++Builder是一个集成开发环境(IDE),它提供了丰富的函数库供开发者使用。在C++Builder中,函数是实现特定功能的基本单元,这些函数覆盖了从基本操作到复杂的系统交互等多个方面。下面将详细讨论部分在描述中提及的函数及其作用。 首先,我们关注的是与Action相关的函数,这些函数主要涉及到用户界面(UI)的交互。`CreateAction`函数用于创建一个新的Action对象,Action在C++Builder中常用于管理菜单、工具栏和快捷键等用户界面元素。`EnumRegisteredAction`用于枚举已经注册的Action,这对于管理和遍历应用程序中的所有Action非常有用。`RegisterAction`和`UnRegisterAction`分别用于注册和反注册Action,注册可以使Action在设计时在Action列表编辑器中可见,而反注册则会将其从系统中移除。 接下来是来自`Classes.hpp`文件的函数,这部分函数涉及到对象和集合的处理。`Bounds`函数返回一个矩形结构,根据提供的上、下、左、右边界值。`CollectionsEqual`函数用于比较两个`TCollection`对象是否相等,这在检查集合内容一致性时很有帮助。`FindClass`函数通过输入的字符串查找并返回继承自`TPersistent`的类,`TPersistent`是C++Builder中表示可持久化对象的基类。`FindGlobalComponent`变量则用于获取最高阶的容器类,这在组件层次结构的遍历中常用。`GetClass`函数返回一个已注册的、继承自`TPersistent`的类。`LineStart`函数用于找出文本中下一行的起始位置,这在处理文本文件时很有用。`ObjectBinaryToText`、`ObjectResourceToText`、`ObjectTextToBinary`和`ObjectTextToResource`是一组转换函数,它们分别用于在二进制流、文本文件和资源之间转换对象。`Point`和`Rect`函数则用于创建和操作几何形状,如点和矩形。`ReadComponentRes`、`ReadComponentResEx`和`ReadComponentResFile`用于从资源中读取和解析组件及其属性。`RegisterClass`、`UnregisterClass`以及它们的相关变体`RegisterClassAlias`、`RegisterClasses`、`RegisterComponents`、`RegisterIntegerConsts`、`RegisterNoIcon`和`RegisterNonActiveX`主要用于类和控件的注册与反注册,这直接影响到设计时的可见性和运行时的行为。 这些函数只是C++Builder庞大函数库的一部分,它们展示了C++Builder如何提供强大且灵活的工具来支持开发者构建高效的应用程序。理解并熟练使用这些函数对于提升C++Builder项目开发的效率至关重要。通过合理利用这些函数,开发者可以创建出功能丰富、用户体验良好的桌面应用程序。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

MATLAB Genetic Algorithm Supply Chain Optimization: Three Key Steps in Practical Application

# 1. Introduction to Genetic Algorithms in MATLAB As a widely-used mathematical computing and visualization software, MATLAB's powerful computational capabilities and rich toolbox functions make it an ideal platform for research and application of genetic algorithms. A genetic algorithm is a search
recommend-type

使用java语言的tftp代码调用

在Java中实现TFTP(简单文件传输协议)客户端通常需要使用到网络编程的知识。以下是一个简单的TFTP客户端代码示例,它使用了Java的`DatagramSocket`和`DatagramPacket`类来实现。 ```java import java.net.*; import java.io.*; public class TFTPClient { private static final int TFTPD_PORT = 69; // TFTP服务端默认端口号 public static void main(String[] args) { if