我正在尝试制作一个如下箭头:
然而,这是我能接近它的最接近的地方:
.button {
margin: 4em 0;
padding: 2em;
width: 15%;
margin: 0 auto;
text-align: center;
background-color: #000000;
color: #ffffff;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-moz-flex-flow: row wrap;
-webkit-flex-flow: row wrap;
-ms-flex-flow: row wrap;
flex-flow: row wrap;
webkit-justify-content: center;
justify-content: center;
}
.curved-arrow {
display: inline-block;
border-top: 10px solid #fff;
border-bottom: 10px solid #fff;
border-left: 30px solid #fff;
border-top-right-radius: 100%;
border-bottom-right-radius: 100%;
}
<div class="button">
<div class="curved-arrow"></div>
</div>
这甚至可能吗?我知道我可以使用图像,但是我的设计师用多种颜色制作了几种颜色,以便在整个网站中使用,我宁愿只使用CSS作为形状。
如果很难看到左边是从上到下的扁平直线,而是在右边的中间弯曲。
答案 0 :(得分:8)
CSS边框半径不会让您轻松获得正在寻找的确切输出。我建议使用带有quadratic bezier command的路径元素的内联SVG:
svg{width:100px;}
&#13;
<svg viewbox="0 0 20 8">
<path d="M0 0 Q 30 4 0 8" />
</svg>
&#13;
然后您可以使用CSS填充属性为箭头着色,请参阅此fiddle(对于评论中发布的示例,@Nick R的信用)
您还可以将2个值用于border-radius属性(请参阅MDN以获取有关其工作方式的说明)这很简单,但它不会让您制作箭头&#39;点&#39;像你的形象一样清晰:
.curved-arrow {
width:40px; height:25px;
background:#000;
border-top-right-radius:100% 50%;
border-bottom-right-radius:100% 50%;
}
&#13;
<div class="curved-arrow"></div>
&#13;
答案 1 :(得分:7)
这需要一些花哨的border-radius
样式来实现您想要的形状。
.container {
width: 100px;
height: 100px;
background: red;
position: relative;
}
.arrow {
width: 50px;
height: 30px;
position: absolute;
top: 32px;
left: 25%;
border-radius: 0px 100% 100% 0px / 0 50% 50% 0;
background: white;
}
<div class="container">
<div class="arrow"></div>
</div>
如果你想在单个元素中使用它,你可以使用像这样的伪元素。
.arrow {
width: 100px;
height: 100px;
background: red;
position: relative;
}
.arrow:before {
content: '';
width: 50px;
height: 30px;
position: absolute;
top: 32px;
left: 25%;
border-radius: 0px 100% 100% 0px / 0 50% 50% 0;
background: white;
}
<div class="arrow"></div>
一个很好的选择也是SVG来创建这个形状,这也使它完全响应。
<svg width="100px" height="100px" viewbox="0 0 20 20" style="background: red;">
<path d="M5,7
Q15,7 15,10
Q15,13 5,13z" fill="white"></path>
</svg>
答案 2 :(得分:1)
我认为我已经做了类似的事情,也许你可以改变一些边距/宽度或高度:
#arrow{
display: block;
box-sizing: content-box;
float: none;
width: 130px;
height: 50px;
top: auto;
right: auto;
bottom: auto;
left: auto;
margin: 0;
padding: 0;
overflow: visible;
outline: none;
border: 0 solid rgba(0,0,0,1);
-webkit-border-radius: 50%;
border-radius: 50%;
background: #1abc9c;
box-shadow: none;
text-shadow: none;
margin-left:-65px;
}
#arrow:after {
position:absolute;
left:-65px;
width:65px;
background:transparent;
content:'';
}
它应该是一个椭圆形,我用:after
(相当肮脏的技巧)隐藏了一半
但是,我建议您使用CSS精灵,我猜它们应该最适合您的情况,因为CSS形状对于浏览器来说并不容易阅读。
希望它有所帮助! :)
答案 3 :(得分:1)
这是我的看法。不像我想的那么尖锐,但它更接近一点。编辑:第二次使用两个伪元素来帮助锐化角度。
.button { margin: 4em 0; padding: 2em; width: 15%; margin: 0 auto; text-align: center; background-color: #000000; color: #ffffff; isplay: -moz-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -moz-flex-flow:row wrap; -webkit-flex-flow:row wrap; -ms-flex-flow:row wrap; flex-flow:row wrap; webkit-justify-content: center; justify-content: center; }
.curved-arrow {
position: relative;
display: inline-block;
height: 36px;
width: 56px;
overflow: hidden;
}
.curved-arrow:after {
content: '';
position: absolute;
right: 0;
top: 0;
border-radius: 0 100% 0 0;
height: 50%;
width: 200%;
background: #FFF;
}
.curved-arrow:before {
content: '';
position: absolute;
right: 0;
bottom: 0;
border-radius: 0 0 100% 0;
height: 50%;
width: 200%;
background: #FFF;
}
<div class="button">
<div class="curved-arrow"></div>
</div>
答案 4 :(得分:0)
这样的东西?
#arrow-base {
width: 120px;
height: 80px;
background: red;
}
#arrow {
width: 0;
height: 0;
border-top: 16px solid transparent;
border-bottom: 16px solid transparent;
border-left: 32px solid white;
display: inline-block;
margin: 24px 44px;
border-radius: 2px;
}
&#13;
<div id="arrow-base">
<div id="arrow">
<!-- should be empty -->
</div>
</div>
&#13;