我有10个内联div,它们具有相同的渐变类型-45deg线,但是渐变具有不同的颜色,并且div具有不同的宽度。
是否可以匹配渐变? (下面的希望图片对此进行了说明)
我的CSS渐变。只有颜色会改变。
#div1 {
background: repeating-linear-gradient(
45deg,
rgba(155,155,155,0.8),
rgba(155,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
#div2 {
background: repeating-linear-gradient(
45deg,
rgba(235,102,107,0.6),
rgba(235,102,107,0.6) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
div {
height:100px;
display:inline-block;
}
<div id="div1" style="width: 30px"></div><div id="div2" style="width: 40px"></div>
现在的样子(行不匹配):
我希望它看起来如何:
答案 0 :(得分:3)
您可以在同一个元素上同时使用两个渐变,并使用background-clip
技巧来隐藏第一个渐变的一部分,直到填充后您才能看到第二个渐变:
.box {
height:100px;
width:80px;
padding-right:50px;
margin:5px;
display:inline-block;
background:
repeating-linear-gradient(
45deg,
rgba(235,102,107,0.6),
rgba(235,102,107,0.6) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px) content-box,
linear-gradient(#fff,#fff) content-box, /*avoid the overlap of both gradient*/
repeating-linear-gradient(
45deg,
rgba(155,155,155,0.8),
rgba(155,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px) padding-box;
}
<div class="box"></div>
<div class="box" style="width:100px;"></div>
<div class="box" style="padding-right:100px;"></div>
如果您使用2个以上的渐变色,则可以考虑使用background-size
。技巧是在每个图层下都有一个白色背景层以隐藏先前的渐变:
.box {
height:100px;
width:300px;
margin:5px;
display:inline-block;
background:
/*First gradient*/
repeating-linear-gradient(
45deg,
rgba(235,102,107,0.6),
rgba(235,102,107,0.6) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px) left/30% 100%,
linear-gradient(#fff,#fff) left/30% 100%,
/*Second one*/
repeating-linear-gradient(
45deg,
rgba(155,155,155,0.8),
rgba(155,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px) left/60% 100%,
linear-gradient(#fff,#fff) left/60% 100%,
/**/
repeating-linear-gradient(
45deg,
rgba(15,15,15,0.8),
rgba(15,15,15,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px) left/80% 100%,
linear-gradient(#fff,#fff) left/80% 100%,
/**/
repeating-linear-gradient(
45deg,
rgba(12,155,155,0.8),
rgba(12,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px) left/100% 100%,
linear-gradient(#fff,#fff) left/100% 100%;
background-repeat:no-repeat;
}
<div class="box"></div>
这是另一个依靠mix-blend-mode
用更少的代码来达到相同结果的想法:
.box {
height:100px;
width:300px;
position:relative;
display:inline-block;
background:
repeating-linear-gradient(
45deg,
rgba(0,0,0,0.6),
rgba(0,0,0,0.6) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px),
#fff;
}
.box::before {
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:linear-gradient(to right,blue 20%,red 20%, red 40%,orange 40%);
mix-blend-mode: lighten;
}
<div class="box"></div>
这是另一个依靠background-attachment:fixed
的想法,您还可以在其中保持透明度:
.box {
height:100px;
width:30px;
margin:5px 0;
display:inline-block;
background-attachment:fixed;
}
#f1 {
background-image:repeating-linear-gradient(
45deg,
rgba(155,155,155,0.8),
rgba(155,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
#f2 {
background-image:repeating-linear-gradient(
45deg,
rgba(15,15,15,0.8),
rgba(15,15,15,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
#f3 {
background-image:repeating-linear-gradient(
45deg,
rgba(12,155,155,0.8),
rgba(12,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
<div class="box" id="f1"></div><div class="box" id="f2" style="width:100px"></div><div class="box" id="f3" style="width:150px"></div>
具有多种背景的另一种方法:
.box {
height:100px;
width:300px;
position:relative;
display:inline-block;
background:
repeating-linear-gradient(
45deg,
transparent,
transparent 3px,
rgba(250,250,250,1) 3px,
rgba(250,250,250,1) 6px),
linear-gradient(to right,
rgba(235,102,107,0.6) 20%,
rgba(155,155,155,0.8) 20%, rgba(155,155,155,0.8) 40%,
rgba(15,15,15,0.8) 40%);
}
<div class="box"></div>
答案 1 :(得分:1)
我得到了这个:
<div id="div1" style="width: 100px; height: 50px;"></div>
#div1 {
background: repeating-linear-gradient(
45deg,
rgba(155,155,155,0.8),
rgba(155,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
#div2 {
background: repeating-linear-gradient(
45deg,
rgba(235,102,107,0.6),
rgba(235,102,107,0.6) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
background-position: -1px;
}
<div id="div1" style="width: 100px; height: 50px;"></div>
<div id="div2" style="width: 100px; height: 50px;"></div>
我认为背景是您要找的
答案 2 :(得分:1)
我认为这可以解决问题:使div牢固并在其顶部放置一个条纹div。 (受到Byoung730的启发)
div {height: 100px; display: inline-block;}
#div1 {
background: repeating-linear-gradient(
45deg,
rgba(155,155,155,0.8),
rgba(155,155,155,0.8) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
#div2 {
background: repeating-linear-gradient(
45deg,
rgba(235,102,107,0.6),
rgba(235,102,107,0.6) 3px,
rgba(250,250,250,0.4) 3px,
rgba(250,250,250,0.4) 6px);
}
#div3 {
background:rgba(155,155,155,0.8)}
#div4 {
background:rgba(235,102,107,0.6)}
#div5 {
position: relative;
top: -100px;
width: 500px;
background: repeating-linear-gradient(
45deg,
rgba(255,255,255,1),
rgba(255,255,255,1) 3px,
rgba(255,255,255,0) 3px,
rgba(255,255,255,0) 6px);}
your example:<br>
<div id="div1" style="width: 100px"></div><div id="div2" style="width: 400px"></div>
smooth one:<br>
<div id="div3" style="width: 100px"></div><div id="div4" style="width: 400px"></div><div id="div5"></div>
答案 3 :(得分:-1)
将其设置为div一行,并使用类似以下内容:
.book {
background-image: linear-gradient(105deg,
rgba($color-white, .9) 0%,
rgba($color-white, .9) 50%,
transparent 50%),
url(../img/nat-10.jpg);
百分比(如果相等)会立即导致颜色变化,而不是逐渐变化。因此,这正好从我的白色变为透明。因此,使用一个div将使直线保持直线,并且百分比将更改颜色。我对我有偏见,所以您想更改初始角度。
HTML:
<section class="section-book" id="book">
<div class="row">
<div class="book">
<div class="book__form">
<form action="#" class="form">