如何在SVG圆内的图像上添加边框

时间:2019-01-31 07:45:17

标签: reactjs animation svg geometry gsap

我正在使用GSAP对围绕圆的笔触进行动画处理。这是Codepen

我想做的是在外部粉红色和(应该是)内部圆形图像之间留出间距,如下所示:

enter image description here

这是我的SVG代码:

      <svg id='svg1' width='48' height='48' viewBox='0 0 48 48'>
        <defs>
          <clipPath id='circleView'>
            <circle cx='24' cy='24' r='22' fill='none' stroke='#FF62E1' strokeWidth='2' />
          </clipPath>
        </defs>
        <image
          width='100%'
          height='100%'
          xlinkHref={'https://source.unsplash.com/random'}
          clipPath='url(#circleView)'
          />
        <circle
          cx='24'
          cy='24'
          r='22'
          fill='none'
          stroke='#FF62E1'
          strokeWidth='2'
          strokeDasharray='100.48'
          strokeDashoffset='100.48'
          // @ts-ignore
          ref={(circle) => { this.circle = circle }} >
          >
        </circle>
      </svg>

我玩过filter,并使用多个圆圈来创建效果,但无济于事。

关于如何实现这一目标的任何想法?

1 个答案:

答案 0 :(得分:1)

您可以将clipPath圆上的半径更改为比另一个圆小一点,并使用正方形图像,使其非常合适。

render() {
  return (
    <svg id='svg1'  viewBox='0 0 48 48'>
      <defs>
        <clipPath id='circleView'>
          <circle cx='24' cy='24' r='18' fill='none' stroke='#FF62E1' strokeWidth='2' />
        </clipPath>
      </defs>
      <image
        x="0"
        y="0"
        width='48'
        height='48'
        xlinkHref={'https://source.unsplash.com/random/1500x1500/'}
        clipPath='url(#circleView)'
      />
      <circle
        cx='24'
        cy='24'
        r='22'
        fill='none'
        stroke='#FF62E1'
        strokeWidth='2'
        // @ts-ignore
        ref={(circle) => { this.circle = circle }} >
      </circle>
    </svg>
    )
  }
}

Codepen

此选项留下一个透明的空白,可以在其中看到背景,因此可能正是您想要的,也可能不是。另一种方法是创建另一个带有笔触的圆,但不再用不同的半径填充顶部。

Alternative Codepen