- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我试图在一个 div 的中间插入一条曲线,所以我可以得到这个结果:
这就是我到目前为止所做的。
.back{
background-color: grey;
width: 100%;
height: 200px;
display: inline-grid;
align-items: center;
overflow: hidden;
}
.line{
height: 3px;
background: linear-gradient(to right, yellow, purple, blue, green, red, orange);
transform: rotate(-10deg);
}
<div class="back">
<div class="line"></div>
</div>
最佳答案
没有渐变和透明你可以考虑伪元素和border-radius
。每个伪元素将创建一半的曲线,您将它们连接起来以创建连续曲线的错觉。
.box {
height:150px;
margin:10px 0;
position:relative;
overflow:hidden;
z-index:0;
--l:3px; /* Thickness of the curve */
--r:90px; /* The curve radius */
--w:60%; /* The width of the left part (i.e distance of the curve from the left) */
--c:red; /* Color of the curve*/
}
.box:before,
.box:after{
content:"";
position:absolute;
z-index:-1;
height:calc(50% - var(--l)); /* each one will take half the height minus border width*/
border-style:solid;
border-color:var(--c);
}
/* Left part */
.box:before {
bottom:0;
left:0;
width:var(--w);
border-width:0 var(--l) var(--l) 0; /* Right & Bottom*/
border-radius:0 0 var(--r) 0; /* Bottom-right*/
}
/* Right part*/
.box:after {
top:0;
right:calc(-1 * var(--l)); /* Move slightly to the right to have a perfect join */
width:calc(100% - var(--w));
border-width:var(--l) 0 0 var(--l); /* Top & Left */
border-radius:var(--r) 0 0 0; /* Top-Left*/
}
body {
background:pink;
}
<div class="box">
</div>
<div class="box" style="--r:40px;--l:5px;--w:70%;--c:green">
</div>
<div class="box" style="--r:100px;--l:2px;--w:100px;--c:blue">
</div>
有渐变但没有透明度,你可以依靠多重背景着色来近似它。这个想法是在下面设置你想要的渐变,然后用其他图层覆盖它以仅保持曲线可见:
.box {
--w:4px;
height:150px;
position:relative;
z-index:0;
background:
radial-gradient(farthest-side at bottom right,grey calc(100% - var(--w) + 1px),transparent calc(100% - var(--w) + 1px) 99%,grey) top 0 right calc(40% - 0.6*56px + var(--w)/2)/54px 50%,
radial-gradient(farthest-side at top left,grey calc(100% - var(--w) + 1px),transparent calc(100% - var(--w) + 1px) 99%,grey) bottom 0 left calc(60% - 0.4*56px + var(--w)/2)/54px 50%,
linear-gradient(grey,grey) bottom right/calc(40% - 50px) calc(100% - var(--w)),
linear-gradient(grey,grey) bottom right/calc(40% - var(--w)/2 + 1px) 50%,
linear-gradient(grey,grey) top left /calc(60% - 50px) calc(100% - var(--w)),
linear-gradient(grey,grey) top left /calc(60% - var(--w)/2 + 1px) 50%,
linear-gradient(to right, yellow, purple, blue, green, red, orange);
background-repeat:no-repeat;
border-top:10px solid grey;
border-bottom:10px solid grey;
}
<div class="box"></div>
<div class="box" style="--w:6px"></div>
这有点棘手,但您可以更改每个渐变的颜色以更好地识别每一层。
.box {
--w:4px;
height:150px;
position:relative;
z-index:0;
background:
radial-gradient(farthest-side at bottom right,pink calc(100% - var(--w) + 1px),transparent calc(100% - var(--w) + 1px) 99%,red) top 0 right calc(40% - 0.6*56px + var(--w)/2)/54px 50%,
radial-gradient(farthest-side at top left,yellow calc(100% - var(--w) + 1px),transparent calc(100% - var(--w) + 1px) 99%,orange) bottom 0 left calc(60% - 0.4*56px + var(--w)/2)/54px 50%,
linear-gradient(green,green) bottom right/calc(40% - 50px) calc(100% - var(--w)),
linear-gradient(purple,purple) bottom right/calc(40% - var(--w)/2 + 1px) 50%,
linear-gradient(blue,blue) top left /calc(60% - 50px) calc(100% - var(--w)),
linear-gradient(black,black) top left /calc(60% - var(--w)/2 + 1px) 50%,
/*linear-gradient(to right, yellow, purple, blue, green, red, orange)*/
white;
background-repeat:no-repeat;
border-top:10px solid grey;
border-bottom:10px solid grey;
}
<div class="box"></div>
<div class="box" style="--w:6px"></div>
有关不同值的更多详细信息的相关问题:Using percentage values with background-position on a linear-gradient
另一个想法(基于第一个代码)有渐变但仍然没有透明度:
.box {
height:150px;
margin:10px 0;
position:relative;
overflow:hidden;
z-index:0;
--l:3px; /* Thickness of the curve */
--r:90px; /* The curve radius */
--c:to right, yellow, purple, blue, green, red, orange; /* Color of the curve*/
}
.box:before,
.box:after{
content:"";
position:absolute;
z-index:-1;
height:calc(50% - var(--l));
border-style:solid;
border-color:transparent;
background:
linear-gradient(pink,pink) padding-box, /* The same as the main background only on the padding-box*/
linear-gradient(var(--c)) border-box; /* Main coloration will cover the border-box */
}
.box:before {
bottom:0;
left:0;
width:40%;
border-width:0 var(--l) var(--l) 0;
border-radius:0 0 var(--r) 0;
background-size:calc(100/40 * 100%) 200%; /* 100/X where X is the width*/
background-position:left bottom;
}
.box:after {
top:0;
right:calc(-1 * var(--l));
width:60%;
border-width:var(--l) 0 0 var(--l);
border-radius:var(--r) 0 0 0;
background-size:calc(100/60 * 100%) 200%; /* 100/X where X is the width*/
background-position:right top;
}
body {
background:pink;
}
<div class="box">
</div>
<div class="box" style="--r:40px;--l:10px;--c:to bottom,red,yellow,green">
</div>
<div class="box" style="--r:100px;--l:2px;--c:45deg,purple,#000,orange">
</div>
然后我们在上面添加mask
以获得透明度:
.box {
height:150px;
margin:10px 0;
position:relative;
overflow:hidden;
z-index:0;
--l:3px; /* Thickness of the curve */
--r:90px; /* The curve radius */
--c:linear-gradient(to right, yellow, purple, blue, green, red, orange); /* Color of the curve*/
}
.box:before,
.box:after{
content:"";
position:absolute;
z-index:-1;
height:calc(50% - var(--l));
border-style:solid;
border-color:transparent;
background: var(--c) border-box;
-webkit-mask:
linear-gradient(#fff 0 0) padding-box,
linear-gradient(#fff 0 0);
-webkit-mask-composite:destination-out;
mask-composite:exclude;
}
.box:before {
bottom:0;
left:0;
width:40%;
border-width:0 var(--l) var(--l) 0;
border-radius:0 0 var(--r) 0;
background-size:calc(100/40 * 100%) 200%; /* 100/X where X is the width*/
background-position:left bottom;
}
.box:after {
top:0;
right:calc(-1 * var(--l));
width:60%;
border-width:var(--l) 0 0 var(--l);
border-radius:var(--r) 0 0 0;
background-size:calc(100/60 * 100%) 200%; /* 100/X where X is the width*/
background-position:right top;
}
body {
background:pink;
}
<div class="box">
</div>
<div class="box" style="--r:40px;--l:10px;--c:linear-gradient(to bottom,red,yellow,green)">
</div>
<div class="box" style="--r:100px;--l:2px;--c:linear-gradient(45deg,purple,#000,orange)">
</div>
关于html - 如何创建带有渐变的曲线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56188930/
我使用 jQuery 已经有一段时间了,但我不知道如何从一个渐变渐变到另一个渐变。我一直在用 http://www.colorzilla.com/gradient-editor/对于我的渐变。例如 b
为了使用 jni 帮助程序库运行测试,我将这样的代码添加到 build.gradle 中: def jniLibDir = "xxx" tasks.withType(Test) { syste
我正在从命令行运行 wsimport 以从 WSDL 生成 java 类,如下所示。 wsimport -J-Djavax.xml.accessExternalDTD=all -J-
我们有一个重复使用第3方 war 的项目(如果有人要求,则为shindig-server-2.0.2.war :)。这场 war 目前位于项目根目录中,当前的ant任务将其解压缩到temp文件夹中,进
我有一个边界框,其坐标由(x,y,w,h)给出,其中x和y是框的左上角坐标。我想在盒子外面应用模糊或渐变。如何使用上面的坐标创建蒙版,并使用类似于下图的PIL或cv2在蒙版之外应用此效果? 最佳答案
考虑情况http://codepen.io/anon/pen/JdGYBN 我需要在拖动元素时动态更改卡片“可拖动”的背景颜色。 但是卡片的背景应该根据线条的渐变颜色而变化。 background:
我现在有这种情况:JSFIDDLE 我想实现这种效果,但我希望文本可以在渐变后面选择,并且即使我将鼠标放在文本上也可以滚动文本。 是否有任何解决方法可以使用 javascript 来改变滚动时文本的不
这段代码是我从css graident generator得到的,渐变底部是透明的 background: -moz-linear-gradient(top, rgba(248,246,247,1)
我必须使用 CSS 完成以下图像: 这是一张包含主导航的图像。所以我为此写了一些 CSS(我知道不是正确的颜色代码): #menu-block { background: #730868; b
是否可以使用渐变作为渐变中的一种颜色? 为了我的特定目的,我有一个从左到右的初始渐变: linear-gradient(to right, red, darkgray); 但我希望深灰色部分实际上是从
我这辈子都想不通为什么 transition 属性在我的 CSS 中不起作用。这是代码: #header #menu-top-nav ul li a { -webkit-transition:
我一直在寻找像下图中那样的多组件日期选择器,但在 Github 或其他地方找不到任何东西。 所以我决定做一个。我在实现 CSS 时遇到问题,它在顶部和底部淡出。 我想过在容器中使用:before和:a
我正在寻找与下图等效的 css。我正在使用多个停止点,但很难获得硬停止点 solid 2px white 边框。如果我添加它,它看起来像是一个渐变而不是硬边。任何帮助都会很棒,谢谢! .stripes
我的广告部门给了我一些图像,将其放在网站上的选项卡等。但是我确信这会减慢页面的呈现速度。所以我想我会用 css 来做。然而,经过几次试验,我无法接近以下图像。对于这两张图片,我将不胜感激。 请删除这个
我试图在将鼠标悬停在 div (id="above") 上时更改 body 的背景图像/渐变,我按照他们在另一篇文章 (http://stackoverflow.com/questions/14623
我正在测试所有浏览器的渐变兼容性,我发现渐变在 FireFox 上有不同的效果。请允许我演示测试。 代码 body{
当我使用渐变时,当内容很少时,渐变会重复出现,我该如何防止这种情况发生? http://jsfiddle.net/mcqpP/1/ 我可以尝试使用 html { height: 100%; },但是当
我有一个导航栏,它的背景颜色略深。我想要一个从中心到左右两侧的渐变,以便导航栏最右边和最左边的位达到背景颜色。这可能吗? -->
我在 Firefox 中使用了这个 CSS 线性渐变,但在 Safari 和其他浏览器中似乎无法获得相同的结果。它是联系字段的纸状背景。我试过整个 body 和一个特定的元素,这种风格似乎只适用于 F
我有这行代码 背景:线性渐变(341deg, #8a8a8a 0%, #8a8a8a 31.9%, #000 32.1%, #000 100%); 如您所见,它一半是灰色一半是黑色。有没有办法让它的灰
我是一名优秀的程序员,十分优秀!