动画 SVG 边框图像不遵守边框半径

Animated SVG border-image not honoring border-radius

我正在尝试通过使用带边框图像的 SVG 制作动画边框半径,并用边框半径将其四舍五入。我有 overflow: hidden; 但边界似乎不受此 属性 的影响。我将在下面给出当前代码,以及一个 JSFiddle 中的边框样式示例。感谢您的帮助!

    margin: 0 auto;
    height: 80vh;
    font-size: 3vw;
    overflow: hidden;
    border: 5px solid;
    border-image: url(../images/borderAnimation.svg) 5 stretch;
    border-radius: 15px;
    background-color: rgb(70, 70, 70);

JSFiddle:https://jsfiddle.net/madaley/vfunmsr7/

我知道这有点作弊,但如果你可以嵌套元素,那么父元素可以有背景,子元素可以用颜色遮盖背景:

div.wrapper {
  width: 300px;
  height: 200px;
  border-radius: 10px;
  padding: 5px;
  background-image: url(https://www.public.asu.edu/~madaley1/images/borderAnimation.svg);
  display: flex;
  align-items: center;
  justify-content: center;
}

div.wrapper>div {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-sizing: border-box;
  background: white;
}
<div class="wrapper">
  <div></div>
</div>