我几乎不知道如何实现这一目标。我已经设法弄清楚如何通过Multiple.js对多个元素进行渐变,但我没有设法找出应用于边框的任何方法。 这就是我到目前为止所拥有的:
.interestingElement {
padding: 0.5em 1em 0.6em 1em;
border: 1px solid black;
border-radius: 5px;
margin: 1em;
font-size: 1.1em;
background-image: linear-gradient(to right, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
background-size: cover;
background-position: center;
background-attachment: fixed;
}
我希望可能有一种方法可以做到这一点,而不需要为每个元素采用单独的渐变。任何帮助将不胜感激。谢谢!
编辑1:如果我的目标只是添加渐变边框,我肯定只会使用border-image。可能有办法让这个经历多个元素吗?也许是这样的事情:
.interestingElement {
padding: 0.5em 1em 0.6em 1em;
border: 5px solid black;
border-image: linear-gradient(to right, black 0%, white 100%) 30% stretch;
border-radius: 5px;
margin: 1em;
}
答案 0 :(得分:1)
你有2个可能来达到这个效果。
两者都在基本元素上设置渐变,在子元素上留下某种透明度以使其显示。
一个可能性是使用border-color:透明,以及一些特殊效果在背景上将其限制为内容,并在阴影上使用渐变来掩盖框周围的渐变。 (这很棘手。可能更容易使用的替代方法是使用伪元素)
另一个可能性是使用混合模式。这还有额外的好处,也可以实现文本的渐变。但是浏览器支持较少,并且限制了嵌套元素中可以实现的颜色。
在代码段中,element1类显示第一种方法,element2显示第二种方法
.base {
width: 300px;
height: 100px;
background: linear-gradient(to right, red, green);
margin-top: 10px;
overflow: hidden;
}
.element {
display: inline-block;
width: 100px;
height: 30px;
top: 25px;
position: relative;
border-radius: 10px;
border: solid 10px black;
background-color: white;
font-size: 30px;
}
.element:nth-child(1) {
margin-left: 10px;
}
.element:nth-child(2) {
margin-left: 30px;
}
.element1 {
border-color: transparent;
background-clip: content-box;
box-shadow: 0px 0px 0px 30px white, 10px -20px 0px 20px white, 10px 20px 0px 20px white ;
}
.element2 {
border-color: black;
mix-blend-mode: lighten;
box-shadow: 0px 0px 0px 30px white, 10px -20px 0px 20px white, 10px 20px 0px 20px white ;
}

<div class="base base1">
<div class="element element1">ONE</div>
<div class="element element1">TWO</div>
</div>
<div class="base base2">
<div class="element element2">ONE</div>
<div class="element element2">TWO</div>
</div>
&#13;
答案 1 :(得分:0)
您可以使用多个linear-gradients
div {
width: 200px;
height: 80px;
border-radius: 5px;
background: linear-gradient(to right, orange, yellow), linear-gradient(to right, orange, yellow), linear-gradient(to right, orange, orange), linear-gradient(to right, yellow, yellow);
background-size: 100% 3px, 100% 3px, 3px 100%, 3px 100%;
background-position: 0 0, 0 100%, 0 0, 100% 0;
background-repeat: no-repeat;
}
<div></div>
应用前缀以获得更多浏览器支持
div {
width: 200px;
height: 80px;
border-radius: 5px;
background: -webkit-gradient(linear, left top, right top, from(orange), to(yellow)), -webkit-gradient(linear, left top, right top, from(orange), to(yellow)), -webkit-gradient(linear, left top, right top, from(orange), to(orange)), -webkit-gradient(linear, left top, right top, from(yellow), to(yellow));
background: -webkit-linear-gradient(left, orange, yellow), -webkit-linear-gradient(left, orange, yellow), -webkit-linear-gradient(left, orange, orange), -webkit-linear-gradient(left, yellow, yellow);
background: -o-linear-gradient(left, orange, yellow), -o-linear-gradient(left, orange, yellow), -o-linear-gradient(left, orange, orange), -o-linear-gradient(left, yellow, yellow);
background: linear-gradient(to right, orange, yellow), linear-gradient(to right, orange, yellow), linear-gradient(to right, orange, orange), linear-gradient(to right, yellow, yellow);
background-size: 100% 3px, 100% 3px, 3px 100%, 3px 100%;
background-position: 0 0, 0 100%, 0 0, 100% 0;
background-repeat: no-repeat;
}
<div></div>