JavaScript实现星级评价效果
程序员文章站
2023-08-16 09:32:04
本文实例为大家分享了js实现星级评价效果展示的具体代码,供大家参考,具体内容如下
背景图片实现
图片是width:36px; height:25px;
背景是白色,中...
本文实例为大家分享了js实现星级评价效果展示的具体代码,供大家参考,具体内容如下
背景图片实现
图片是width:36px; height:25px;
背景是白色,中间一个空的五角星,空的边缘有一像素的边框;(不然就看不到了);
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>星级评价(可半星)</title> <style> .xin{height: 25px; background: url(images/x.png); position: relative; display: inline-block;} .xin span{display: block; height: 25px; background: #f60; position: absolute; left: 0; top: 0;z-index: -1;transition: 0.2s;} .xin ul{position: absolute; top: 0; left: 0; height: 25px; margin: 0; padding: 0; list-style: none;} .xin ul li{float: left; width: 18px; height: 25px;} .fensu{display: inline-block;} </style> </head> <body> <input type="hidden" title="10" value="3.5"> <input type="hidden" title="5" value="1.5"> <script> var input=document.queryselectorall("input[type=hidden]"); input.foreach(function(_input){ var div=document.createelement("div"); div.classname="xin"; div.style.width=18*(_input.title || 5)*2 + "px"; _input.parentnode.insertbefore(div,_input); var span=document.createelement("span"); span.style.width=(_input.value)*36+"px"; var p=document.createelement("p"); p.innerhtml=_input.value+"分"; p.classname="fensu"; div.parentnode.insertbefore(p,div); div.parentnode.insertbefore(div,p); div.appendchild(span); var ul=document.createelement("ul"); div.appendchild(ul); for(var i=0;i<(_input.title || 5)*2;i++){ var li=document.createelement("li"); li.title=(i+1)/2+"分"; ul.appendchild(li); } var li=ul.queryselectorall("li"); li.foreach(function(_li,x){ _li.onclick=function(){ _input.value=(x+1)/2; span.style.width=18*(x+1)+"px"; p.innerhtml=_input.value+"分"; } _li.onmouseover=function(){ span.style.width=18*(x+1)+"px"; } _li.onmouseout=function(){ span.style.width=(_input.value)*36+"px"; } }) var br=document.createelement("br"); p.parentnode.insertbefore(br,p); p.parentnode.insertbefore(p,br); }) </script> </body> </html>
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
推荐阅读