首页 前端知识 jQuery实现五星好评

jQuery实现五星好评

2024-06-16 09:06:51 前端知识 前端哥 852 445 我要收藏

简单实现五星评价

html代码:

<div class="box">
        <ul>
            <li>
                <span class="star1"></span>
                <span class="star0"></span>
            </li>
            <li>
                <span class="star1"></span>
                <span class="star0"></span>
            </li>
            <li>
                <span class="star1"></span>
                <span class="star0"></span>
            </li>
            <li>
                <span class="star1"></span>
                <span class="star0"></span>
            </li>
            <li>
                <span class="star1"></span>
                <span class="star0"></span>
            </li>
            <li class="text">非常好</li>
        </ul>
    </div>

css代码:

<style type="text/css">
    .box{
        width: 500px;
        margin: 100px auto;
    }
    .box ul{
        list-style: none;
    }

    .box ul li{
        position: relative;
        float: left;
        width: 50px;
        height: 42px;
        line-height: 42px;
    }
    .box ul li span{
        position: absolute;
        display: block;
        width: 44px;
        height: 42px;
    }
    .box ul li .star0{
        background: url(image/star0.png);
    }
    .box ul li .star1{
        background: url(image/star1.png);
    }

</style>

jQuery代码:

<script src="jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
    /* 鼠标单击 */
    $(".box ul li").click(function(){
        var txt = ['非常差','差','一般','好','非常好'];
        $(this).find(".star0").css("display","none");
        $(this).prevAll().find(".star0").css("display","none");
        $(this).nextAll().find(".star0").css("display","block");
        $(".box ul .text").html(txt[$(this).index()]);
    }) 
</script>

 

 

转载请注明出处或者链接地址:https://www.qianduange.cn//article/12390.html
标签
评论
发布的文章

前端开发 4: jQuery

2024-06-22 01:06:02

网页开发 HTML

2024-06-22 01:06:17

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!