富贵资源网 Design By www.hznty.com
先来看一下CSS绘制五角星的基本方法:
- #star-five {
- margin: 50px 0;
- position: relative;
- display: block;
- color: red;
- width: 0px;
- height: 0px;
- border-right: 100px solid transparent;
- border-bottom: 70px solid red;
- border-left: 100px solid transparent;
- -moz-transform: rotate(35deg);
- -webkit-transform: rotate(35deg);
- -ms-transform: rotate(35deg);
- -o-transform: rotate(35deg);
- }
- #star-five:before {
- border-bottom: 80px solid red;
- border-left: 30px solid transparent;
- border-right: 30px solid transparent;
- position: absolute;
- height: 0;
- width: 0;
- top: -45px;
- left: -65px;
- display: block;
- content: "";
- -webkit-transform: rotate(-35deg);
- -moz-transform: rotate(-35deg);
- -ms-transform: rotate(-35deg);
- -o-transform: rotate(-35deg);
- }
- #star-five:after {
- position: absolute;
- display: block;
- color: red;
- top: 3px;
- left: -105px;
- width: 0px;
- height: 0px;
- border-right: 100px solid transparent;
- border-bottom: 70px solid red;
- border-left: 100px solid transparent;
- -webkit-transform: rotate(-70deg);
- -moz-transform: rotate(-70deg);
- -ms-transform: rotate(-70deg);
- -o-transform: rotate(-70deg);
- content: "";
- }
有了这个基础,基本上星级评分的效果就容易实现了:
下图是Demo中会用到的图,可右键另存
HTML Code
- <ul class="rating nostar">
- <li class="one"><a href="#" title="1 Star">1</a>
- </li>
- <li class="two"><a href="#" title="2 Stars">2</a>
- </li>
- <li class="three"><a href="#" title="3 Stars">3</a>
- </li>
- <li class="four"><a href="#" title="4 Stars">4</a>
- </li>
- <li class="five"><a href="#" title="5 Stars">5</a>
- </li>
- </ul>
CSS Code
- .rating {
- width: 124px;
- height: 19px;
- margin: 0 0 20px 0;
- padding: 0;
- list-style: none;
- clear: both;
- position: relative;
- background: url(http://www.zjgsq.com/wp-content/uploads/2014/09/stars.png) no-repeat 0 0;
- }
- .nostar {
- background-position: 0 0
- }
- .onestar {
- background-position: 0 -19px
- }
- .twostar {
- background-position: 0 -38px
- }
- .threestar {
- background-position: 0 -57px
- }
- .fourstar {
- background-position: 0 -76px
- }
- .fivestar {
- background-position: 0 -95px
- }
- ul.rating li {
- cursor: pointer;
- float: left;
- text-indent: -999em;
- }
- ul.rating li a {
- position: absolute;
- left: 0;
- top: 0;
- width: 25px;
- height: 19px;
- text-decoration: none;
- z-index: 200;
- }
- ul.rating li.one a {
- left: 0
- }
- ul.rating li.two a {
- left: 25px;
- }
- ul.rating li.three a {
- left: 50px;
- }
- ul.rating li.four a {
- left: 75px;
- }
- ul.rating li.five a {
- left: 100px;
- }
- ul.rating li a:hover {
- z-index: 2;
- width: 125px;
- height: 19px;
- overflow: hidden;
- left: 0;
- background: url(http://www.zjgsq.com/wp-content/uploads/2014/09/stars.png) no-repeat 0 0
- }
- ul.rating li.one a:hover {
- background-position: 0 -19px;
- }
- ul.rating li.two a:hover {
- background-position: 0 -38px;
- }
- ul.rating li.three a:hover {
- background-position: 0 -57px
- }
- ul.rating li.four a:hover {
- background-position: 0 -76px
- }
- ul.rating li.five a:hover {
- background-position: 0 -95px
- }
这样就基本实现了鼠标hover显示对应的星级,后面再增加点JS来实现click效果就可以啦
Demo
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。