Scale path from center

后端 未结 3 766
渐次进展
渐次进展 2020-12-06 04:37

I have the following SVG graphic:



        
3条回答
  •  死守一世寂寞
    2020-12-06 05:04

    You can alter the origin to center:

    .scaled-path-svg {
      svg {
        path {
          transform-origin: center;
          transform: scale(1.1);
        }
      }
    }
    

提交回复
热议问题