Star Rating with SVG catering for decimal point rating

前端 未结 3 664
南旧
南旧 2021-01-17 05:38

I have some code to create a star rating. I have not used SVG before and I can\'t figure out how to get it to do the following:

  • Rating is out of 5
  • Di
3条回答
  •  甜味超标
    2021-01-17 06:36

    You can adjust the with some simple JS. Example below.

    function setFraction(fraction)
    {
        document.getElementById("stop1").setAttribute("offset", fraction);
        document.getElementById("stop2").setAttribute("offset", fraction);
    }
    
    
    setFraction(0.4);
    
      
      
        
        
      
    

    If you wanted to avoid JS, then you could create 11 different versions of the star (unfilled, 0.1, 0.2 ... 0.9, filled) and just include the correct one.

提交回复
热议问题