Style SVG circle with CSS

后端 未结 11 1611
时光取名叫无心
时光取名叫无心 2020-12-14 01:03

So I have my SVG-circle.


   
         


        
11条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-14 01:30

    It can be done in CSS(3), by setting the transform-origin of the circle to its center and then using scale transformation:

    circle {
      transform-origin: center center;
    }
    
    circle:hover {
      stroke-width: 10px;
      transform:scale(1.2, 1.2);
    }
    

提交回复
热议问题