溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何使用CSS繪制星級(jí)評(píng)分效果

發(fā)布時(shí)間:2021-08-04 10:31:00 來源:億速云 閱讀:124 作者:chen 欄目:web開發(fā)

這篇文章主要介紹“如何使用CSS繪制星級(jí)評(píng)分效果”,在日常操作中,相信很多人在如何使用CSS繪制星級(jí)評(píng)分效果問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何使用CSS繪制星級(jí)評(píng)分效果”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!

先來看一下CSS繪制五角星的基本方法:

CSS Code復(fù)制內(nèi)容到剪貼板

  1.     #star-five {   

  2.    margin50px 0;   

  3.    positionrelative;   

  4.    displayblock;   

  5.    colorred;   

  6.    width0px;   

  7.    height0px;   

  8.    border-right:  100px solid transparent;   

  9.    border-bottom70px  solid red;   

  10.    border-left:   100px solid transparent;   

  11.    -moz-transform:    rotate(35deg);   

  12.    -webkit-transform: rotate(35deg);   

  13.    -ms-transform:     rotate(35deg);   

  14.    -o-transform:      rotate(35deg);   

  15. }   

  16. #star-five:before {   

  17.    border-bottom80px solid red;   

  18.    border-left30px solid transparent;   

  19.    border-right30px solid transparent;   

  20.    positionabsolute;   

  21.    height: 0;   

  22.    width: 0;   

  23.    top: -45px;   

  24.    left: -65px;   

  25.    displayblock;   

  26.    content"";   

  27.    -webkit-transform: rotate(-35deg);   

  28.    -moz-transform:    rotate(-35deg);   

  29.    -ms-transform:     rotate(-35deg);   

  30.    -o-transform:      rotate(-35deg);   

  31.   

  32. }   

  33. #star-five:after {   

  34.    positionabsolute;   

  35.    displayblock;   

  36.    colorred;   

  37.    top3px;   

  38.    left: -105px;   

  39.    width0px;   

  40.    height0px;   

  41.    border-right100px solid transparent;   

  42.    border-bottom70px solid red;   

  43.    border-left100px solid transparent;   

  44.    -webkit-transform: rotate(-70deg);   

  45.    -moz-transform:    rotate(-70deg);   

  46.    -ms-transform:     rotate(-70deg);   

  47.    -o-transform:      rotate(-70deg);   

  48.    content"";   

  49. }  

有了這個(gè)基礎(chǔ),基本上星級(jí)評(píng)分的效果就容易實(shí)現(xiàn)了:
下圖是Demo中會(huì)用到的圖,可右鍵另存
如何使用CSS繪制星級(jí)評(píng)分效果

HTML Code

 

XML/HTML Code復(fù)制內(nèi)容到剪貼板

  1. <ul class="rating nostar">  

  2.                             <li class="one"><a href="#" title="1 Star">1</a>  

  3.                             </li>  

  4.                             <li class="two"><a href="#" title="2 Stars">2</a>  

  5.                             </li>  

  6.                             <li class="three"><a href="#" title="3 Stars">3</a>  

  7.                             </li>  

  8.                             <li class="four"><a href="#" title="4 Stars">4</a>  

  9.                             </li>  

  10.                             <li class="five"><a href="#" title="5 Stars">5</a>  

  11.                             </li>  

  12.                         </ul>  

CSS Code

 

CSS Code復(fù)制內(nèi)容到剪貼板

  1. .rating {   

  2.     width124px;   

  3.     height19px;   

  4.     margin: 0 0 20px 0;   

  5.     padding: 0;   

  6.     list-stylenone;   

  7.     clearboth;   

  8.     positionrelative;   

  9.     backgroundurl(http://www.zjgsq.com/wp-content/uploads/2014/09/stars.png) no-repeat 0 0;   

  10. }   

  11. .nostar {   

  12.     background-position: 0 0   

  13. }   

  14. .onestar {   

  15.     background-position: 0 -19px  

  16. }   

  17. .twostar {   

  18.     background-position: 0 -38px  

  19. }   

  20. .threestar {   

  21.     background-position: 0 -57px  

  22. }   

  23. .fourstar {   

  24.     background-position: 0 -76px  

  25. }   

  26. .fivestar {   

  27.     background-position: 0 -95px  

  28. }   

  29. ul.rating li {   

  30.     cursorpointer;   

  31.     floatleft;   

  32.     text-indent: -999em;   

  33. }   

  34. ul.rating li a {   

  35.     positionabsolute;   

  36.     left: 0;   

  37.     top: 0;   

  38.     width25px;   

  39.     height19px;   

  40.     text-decorationnone;   

  41.     z-index: 200;   

  42. }   

  43. ul.rating li.one a {   

  44.     left: 0   

  45. }   

  46. ul.rating li.two a {   

  47.     left25px;   

  48. }   

  49. ul.rating li.three a {   

  50.     left50px;   

  51. }   

  52. ul.rating li.four a {   

  53.     left75px;   

  54. }   

  55. ul.rating li.five a {   

  56.     left100px;   

  57. }   

  58. ul.rating li a:hover {   

  59.     z-index: 2;   

  60.     width125px;   

  61.     height19px;   

  62.     overflowhidden;   

  63.     left: 0;   

  64.     backgroundurl(http://www.zjgsq.com/wp-content/uploads/2014/09/stars.png) no-repeat 0 0   

  65. }   

  66. ul.rating li.one a:hover {   

  67.     background-position: 0 -19px;   

  68. }   

  69. ul.rating li.two a:hover {   

  70.     background-position: 0 -38px;   

  71. }   

  72. ul.rating li.three a:hover {   

  73.     background-position: 0 -57px  

  74. }   

  75. ul.rating li.four a:hover {   

  76.     background-position: 0 -76px  

  77. }   

  78. ul.rating li.five a:hover {   

  79.     background-position: 0 -95px  

  80. }  

這樣就基本實(shí)現(xiàn)了鼠標(biāo)hover顯示對(duì)應(yīng)的星級(jí),后面再增加點(diǎn)JS來實(shí)現(xiàn)click效果就可以啦

到此,關(guān)于“如何使用CSS繪制星級(jí)評(píng)分效果”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI