六、SVG

一、SVG制作扇形

  

  1、html代码

    <svg viewBox = "0 0 32 32">
      <circle r="16" cx="16" cy="16" />
    </svg>
  2、css代码 
    svg {
      width: 100px;height: 100px;
      transform: rotate(-90deg);
      background: yellowgreen;
      border-radius: 50%;
      }
    circle {
      fill: gold;
      stroke: #333;
      stroke-width: 32;
      stroke-dasharray: 45 100;
      }

 

posted @ 2018-11-19 09:58  道鼎金刚  阅读(129)  评论(0)    收藏  举报