我遇到CSS3问题。我不知道如何制作像这样的对角圆形渐变边框:
我找到了类似this的内容:
.box {
width: 250px;
height: 250px;
margin: auto;
background: #eee;
border: 20px solid transparent;
-moz-border-image: -moz-linear-gradient(top left, #3acfd5 0%, #3a4ed5 100%);
-webkit-border-image: -webkit-linear-gradient(top left, #3acfd5 0%, #3a4ed5 100%);
border-image: linear-gradient(to bottom right, #3acfd5 0%, #3a4ed5 100%);
border-image-slice: 1;
}

<div class="box"></div>
&#13;
但不幸的是,这只适用于正方形。
任何帮助都将不胜感激。
答案 0 :(得分:11)
圆锥形渐变是沿着圆心绕中心的渐变。这就是我们在色轮中看到的。正如Paulie_D所指出的那样,CSS目前无法实现这些目标,Lea Verou has developed a polyfill for it。
话虽如此,你所寻找的似乎不是一个圆锥形的渐变,它是正常的角度线性渐变,但仅适用于边界。
这不能通过CSS border-image
属性实现,因为它的工作方式符合specs。
盒子的背景,但不是它的边框图像,被剪裁到适当的曲线
如果圆的中心部分是纯色,则可以使用Vitorino答案中提到的方法。如果它不是纯色(即页面背景是渐变或需要显示的图像)那么它将无济于事。在这种情况下可以使用以下方法。
使用蒙版图片:
此方法使用圆形蒙版图像来遮盖圆的内部。这使得它看起来好像只有边框应用了渐变。 缺点是目前仅在Webkit驱动的浏览器中支持此功能。
.border-gradient-mask {
height: 200px;
width: 200px;
border-radius: 50%;
background-image: linear-gradient(to bottom left, #7B73A4 0%, #150E5E 100%);
-webkit-mask-image: radial-gradient(circle at center, transparent 57%, white 58%);
mask-image: radial-gradient(circle at center, transparent 57%, white 58%);
}
body {
background: radial-gradient(circle at center, sandybrown, chocolate);
}
&#13;
<div class="border-gradient-mask"></div>
&#13;
使用SVG形状或蒙版:
另一种方法是使用SVG circle
元素创建圆,然后将渐变分配给stroke
属性。渐变也应用gradientTransform
,因为这是使用SVG生成有角度线性渐变的唯一方法。
.border-gradient-svg {
position: relative;
height: 200px;
width: 200px;
border-radius: 50%;
}
.border-gradient-svg svg {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
}
.border-gradient-svg circle {
fill: transparent;
stroke: url(#grad);
stroke-width: 8;
}
body {
background: radial-gradient(circle at center, sandybrown, chocolate);
}
&#13;
<div class="border-gradient-svg">
<svg viewBox="0 0 100 100">
<defs>
<linearGradient id="grad" gradientUnits="objectBoundingBox" gradientTransform="rotate(135 0.5 0.5)">
<stop offset="0%" stop-color="#7B73A4" />
<stop offset="100%" stop-color="#150E5E" />
</linearGradient>
</defs>
<circle r="46" cx="50" cy="50" />
</svg>
</div>
&#13;
同样可以通过使用SVG mask
来实现。所需的只是创建一个带有两个circle
元素的蒙版,用白色填充较大的圆圈,用黑色填充较小的圆圈,然后将蒙版应用到原始circle
元素。较小圆圈(黑色填充)占据的区域将是透明的。
.border-gradient-svg {
position: relative;
height: 200px;
width: 200px;
border-radius: 50%;
}
.border-gradient-svg svg {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
}
.border-gradient-svg .grad-border {
fill: url(#grad);
mask: url(#masker);
}
body {
background: radial-gradient(circle at center, sandybrown, chocolate);
}
&#13;
<div class="border-gradient-svg">
<svg viewBox="0 0 100 100">
<defs>
<linearGradient id="grad" gradientUnits="objectBoundingBox" gradientTransform="rotate(135 0.5 0.5)">
<stop offset="0%" stop-color="#7B73A4" />
<stop offset="100%" stop-color="#150E5E" />
</linearGradient>
<mask id="masker" x="0" y="0" width="100" height="100">
<circle r="50" cx="50" cy="50" fill="#fff" />
<circle r="42" cx="50" cy="50" fill="#000" />
</mask>
</defs>
<circle r="50" cx="50" cy="50" class="grad-border"/>
</svg>
</div>
&#13;
使用剪辑路径:
创建此方法的另一种方法是使用clip-path
(带内联SVG)和clip-rule
set to evenodd
。剪辑路径解决方案的优势优于其他方式,仅在悬停在填充区域(而不是透明区域)时触发悬停效果。 缺点是IE不支持剪辑路径(即使使用SVG)。
.border-gradient-clip {
height: 200px;
width: 200px;
border-radius: 50%;
background-image: linear-gradient(to bottom left, #7B73A4 0%, #150E5E 100%);
-webkit-clip-path: url(#clipper);
clip-path: url(#clipper);
}
body {
background: radial-gradient(circle at center, sandybrown, chocolate);
}
&#13;
<svg width="0" height="0">
<defs>
<clipPath id="clipper" clipPathUnits="objectBoundingBox">
<path d="M0,0.5 a0.5,0.5 0 1,0 1,0 a0.5,0.5 0 1,0 -1,0z M0.08,0.5 a0.42,0.42 0 1,0 0.84,0 a0.42,0.42 0 1,0 -0.84,0z" clip-rule="evenodd" />
</clipPath>
</defs>
</svg>
<div class="border-gradient-clip"></div>
&#13;
答案 1 :(得分:7)
您可以尝试使用-ve z-index
注意:背景不透明,因为我使用background-color
作为内部元素
.box {
width: 250px;
height: 250px;
position: relative;
margin: auto;
margin: 30px;
border-radius: 50%;
background: #fff;
}
.box:after {
content: '';
position: absolute;
top: -15px;
bottom: -15px;
right: -15px;
left: -15px;
background-image: linear-gradient(to bottom left, #7B73A4 0%, #150E5E 100%);
z-index: -1;
border-radius: inherit;
}
<div class="box"></div>