2016-11-29 143 views
-1

我目前正在致力于留言,我想创建一个星级评分系统。但我卡住了!当我点击它们时,我无法修复恒星,使它们保持黄色(gelb)。星级评分系统html

这是到目前为止我的代码:

<div class="rating"> 
     <p id="rating-paragraph">Rate</p> 
     <img id="stern1" src="pictures/durchsichtig.png" onmouseover="stern1.src='pictures/gelb.png'" onmouseout="stern1.src='pictures/durchsichtig.png'" alt="error"> <?php ?> 
     <img id="stern2" src="pictures/durchsichtig.png" onmouseover="stern1.src='pictures/gelb.png'; this.src='pictures/gelb.png'" onmouseout="stern1.src='pictures/durchsichtig.png'; this.src='pictures/durchsichtig.png'" alt="error"> 
     <img id="stern3" src="pictures/durchsichtig.png" onmouseover="stern1.src='pictures/gelb.png'; stern2.src='pictures/gelb.png'; this.src='pictures/gelb.png' " onmouseout="stern1.src='pictures/durchsichtig.png';stern2.src='pictures/durchsichtig.png'; this.src='pictures/durchsichtig.png' " alt="error"> 
     <img id="stern4" src="pictures/durchsichtig.png" onmouseover="stern1.src='pictures/gelb.png'; stern2.src='pictures/gelb.png'; stern3.src='pictures/gelb.png'; this.src='pictures/gelb.png' " onmouseout="stern1.src='pictures/durchsichtig.png';stern2.src='pictures/durchsichtig.png'; stern3.src='pictures/durchsichtig.png';this.src='pictures/durchsichtig.png' " alt="error"> 
     <img id="stern5" src="pictures/durchsichtig.png" onmouseover="stern1.src='pictures/gelb.png'; stern2.src='pictures/gelb.png'; stern3.src='pictures/gelb.png'; stern4.src='pictures/gelb.png'; this.src='pictures/gelb.png' " onmouseout="stern1.src='pictures/durchsichtig.png';stern2.src='pictures/durchsichtig.png'; stern3.src='pictures/durchsichtig.png';stern4.src='pictures/durchsichtig.png'; this.src='pictures/durchsichtig.png' " alt="error"> 
    </div> 

和CSS:

#stern1:hover, #stern2:hover, #stern3:hover, #stern4:hover, #stern5:hover{ cursor: pointer; }

感谢您的时间,也许一些帮助或建议:)

+2

欢迎堆栈溢出!寻求代码帮助的问题必须包含在问题本身中重现**所需的最短代码**最好在[** Stack Snippet **]中(https://blog.stackoverflow.com/2014/09/introducing-runnable) -javascript-CSS-和HTML的代码段/)。请参阅[**如何创建一个最小,完整和可验证的示例**](http://stackoverflow.com/help/mcve) –

+0

看起来像缺少一个点击事件,它会翻转图像以使星星保持点亮。你需要一个onclick或者一个JQuery $(“#theId”)。(点击.....让它开始。[示例](http://callmenick.com/post/five-star-rating -component与 - JavaScript的CSS) – dpp

回答

6

纯CSS +没有任何图像的HTML评分方法(仅与unicode构件一起使用)

div.stars { 
 
    width: 270px; 
 
    display: inline-block; 
 
} 
 

 
input.star { display: none; } 
 

 
label.star { 
 
    float: right; 
 
    padding: 10px; 
 
    font-size: 36px; 
 
    color: #444; 
 
    transition: all .2s; 
 
} 
 

 
input.star:checked ~ label.star:before { 
 
    content: '\2605'; 
 
    color: #FD4; 
 
    transition: all .25s; 
 
} 
 

 
input.star-5:checked ~ label.star:before { 
 
    color: #FE7; 
 
    text-shadow: 0 0 20px #952; 
 
} 
 

 
input.star-1:checked ~ label.star:before { color: #F62; } 
 

 
label.star:hover { transform: rotate(-15deg) scale(1.3); } 
 

 
label.star:before { 
 
    content: '\2605'; 
 
}
<div class="stars"> 
 
    <form action=""> 
 
    <input class="star star-5" id="star-5" type="radio" name="star"/> 
 
    <label class="star star-5" for="star-5"></label> 
 
    <input class="star star-4" id="star-4" type="radio" name="star"/> 
 
    <label class="star star-4" for="star-4"></label> 
 
    <input class="star star-3" id="star-3" type="radio" name="star"/> 
 
    <label class="star star-3" for="star-3"></label> 
 
    <input class="star star-2" id="star-2" type="radio" name="star"/> 
 
    <label class="star star-2" for="star-2"></label> 
 
    <input class="star star-1" id="star-1" type="radio" name="star"/> 
 
    <label class="star star-1" for="star-1"></label> 
 
    </form> 
 
</div>