React Native 如何创建一个有边框的松鼠?[已关闭]

z4iuyo4d  于 2023-01-27  发布在  React
关注(0)|答案(1)|浏览(120)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
4天前关闭。
Improve this question
有没有什么方法可以使一个squircle(遮罩图像?,胡迪尼?),但也有边界,阴影,或内部辉光也符合形状?

mwkjh3gx

mwkjh3gx1#

    • 您可以像这样调整CSS边框半径**
.squircle{
  width: 100px;
  height: 100px;
  display: block;
  border-radius: 30px/40px ;
  background: linear-gradient(#f23f71,#d01257)
}
<div class="squircle"></div>

相关问题