zoukankan      html  css  js  c++  java
  • 仿百度文库评分

    HTML

    <div id="box">
    	评价:
    	<a href="javascript:;">
    		<em></em>
    	</a>
    	<a href="javascript:;">
    		<em></em>
    	</a>
    	<a href="javascript:;">
    		<em></em>
    	</a>
    	<a href="javascript:;">
    		<em></em>
    	</a>
    	<a href="javascript:;">
    		<em></em>
    	</a>
    	<i>很差</i>
    </div>
    

    CSS

    *{
    	margin: 0;
    	padding: 0;
    }
    #box{
    	margin: 50px 0 0 50px;
    	line-height: 20px;
    }
    i{
    	font-style: normal;
    }
    a,em{
    	display: inline-block;
    }
    a{
    	 33px;
    	height: 26px;
    	position: relative;
    	margin-right: 10px;
    }
    em{
    	 0;
        height: 0;
    	border-right:20px solid transparent ;
        border-bottom:11px solid #ccc ;
        border-left:20px solid transparent;
        transform: rotate(35deg);
    }
    .act{
    	border-bottom:11px solid orange;
    }
    .act1{
    	border-bottom:11px solid #6A685C;
    }
    em:after{
    	position: absolute;
        left: -19px;
        top: 0;
         0;
        height: 0;
        content: "";
        border-right:20px solid transparent;
        border-bottom:11px solid #ccc;
        border-left:20px solid transparent;
        transform: rotate(-70deg);
    }
    .act:after{
    	border-bottom:11px solid orange;
    }
    .act1:after{
    	border-bottom:11px solid #6A685C;
    }
    em:before{
    	position: absolute;
        left: -13px;
        top: -15px;
         0;
        height: 0;
        content: "";
        border-right:8px solid transparent;
        border-bottom:25px solid #ccc;
        border-left:8px solid transparent;
       	transform: rotate(-35deg);
    }
    .act:before{
    	border-bottom:25px solid orange;
    }
    .act1:before{
    	border-bottom:25px solid #6A685C;
    }
    

    JS

    	var Box=document.getElementById("box");
    	var star=document.getElementsByTagName("a");
    	var stars=document.getElementsByTagName("em");
    	var oI=document.getElementsByTagName("i")[0];
    	var txt=["很差","差","还可以","满意","非常满意"];
    	
    	for (var i=0;i<star.length;i++) {
    		star[i].index=i;
    		//鼠标移入
    		star[i].onmouseover=function(){
    			//根据星星的个数控制星星的颜色,三星一下显示为灰色,三星以上包括三星显示为黄色
    			if(this.index<2){
    				for (var i=0;i<this.index+1;i++) {
    					stars[i].className="act1";
    				}
    			}else{
    				for (var i=0;i<this.index+1;i++) {
    					stars[i].className="act";
    				}
    			}
    			oI.innerHTML=txt[this.index];
    		}
    		//鼠标移出
    		star[i].onmouseout=function(){
    			for (var i=this.index+1;i<star.length;i++) {
    				stars[i].className=" ";
    			}
    		}
    		//鼠标点击给出评价
    		star[i].onclick=function(){
    			if(this.index<2){
    				for (var i=0;i<this.index+1;i++) {
    					stars[i].className="act1";
    				}
    			}else{
    				for (var i=0;i<this.index+1;i++) {
    					stars[i].className="act";
    				}
    			}
    			//清除所有移入移出事件
    			for (var i=0;i<star.length;i++) {
    				star[i].onmouseover=null;
    				star[i].onmouseout=null;
    			}
    			oI.innerHTML=txt[this.index];
    			Box.onmouseout=null;
    			
    		}
    	}
    	//整体移出
    	Box.onmouseout=function(){
    		for (var i=0;i<star.length;i++) {
    			stars[i].className=" ";
    		}
    		oI.innerHTML=txt[0];
    	}
  • 相关阅读:
    Asp.net button防止点击多次数据提交
    Asp.net button防止点击多次数据提交
    Asp.net button防止点击多次数据提交
    被投资人坑的大学生创业者
    分析了3200家创业公司
    移动互联网4种引流思维:免费思维、跨界思维、平台思维、金融思维
    腾讯入局、估值超10亿美元,“野路子”瑞幸的三大增长法则
    95后女生月入8万,竟然“玩着玩着”就赚到钱
    95后中介年入百万:“伪焦虑”是你人生最大的骗局
    一家靠收智商税盈利的公司,卖了340亿
  • 原文地址:https://www.cnblogs.com/yangxue72/p/7838607.html
Copyright © 2011-2022 走看看