我目前正在建立一个网站,要求按钮在按钮的左侧倾斜。该网站响应迅速,按钮也需要圆角。我也试图避免使用背景图像。
有人能告诉我这个解决方案吗?忽略按钮上的图标,我能够做到这一点。我只需要倾斜的一面。
body {
background: lightblue;
font-family: sans-serif;
}
div {
background: purple;
width: 200px;
padding: 30px;
border: 3px solid white;
color: white;
}
<div>Some Text</div>
答案 0 :(得分:5)
是您可以使用 css-pseudo元素 before或after这样使用白色叠加层
.slantButton {
position: relative;
background-color: #8D3F81;
border: 1px solid transparent;
border-radius: 5px 5px 5px 20px;
color: #fff;
padding: 10px 20px;
text-transform: uppercase;
font-size: 18px;
cursor: pointer;
outline: 0;
}
.slantButton:before {
content: '';
position: absolute;
top: 0;
left: -5px;
width: 0;
height: 0;
border-bottom: 42px solid #fff;
border-right: 16px solid transparent;
}
<button class="slantButton">Call Me Back</button>
我已使用
将不同的边框半径应用到左下角border-radius:5px 5px 5px 20px;
然后在伪元素中使用 css triangle 。制作一个三角形的白色叠加,并按照你的建议做出倾斜的边缘
.slantButton {
position: relative;
background-color: #8D3F81;
border: 1px solid transparent;
border-radius: 5px 5px 5px 20px;
color: #fff;
padding: 10px 20px;
text-transform: uppercase;
font-size: 18px;
cursor: pointer;
outline: 0;
}
.slantButton:before {
content: '';
position: absolute;
top: 0;
left: -5px;
width: 0;
height: 0;
border-bottom: 42px solid rgba(0,0,0,0.5);
border-right: 16px solid transparent;
}
<button class="slantButton">Call Me Back</button>
答案 1 :(得分:4)
注意:我正在添加一个单独的答案,因为虽然我在评论中链接的答案似乎给出了一个解决方案,但由于边界的存在,这一点也有点复杂边界半径。
可以使用以下部分创建形状:
我还在片段中添加了hover
效果,以展示形状的响应特性。
.outer {
position: relative;
height: 75px;
width: 300px;
text-align: center;
line-height: 75px;
color: white;
text-transform: uppercase;
}
.outer:before,
.outer:after {
position: absolute;
content: '';
top: 0px;
height: 100%;
width: 55%;
background: purple;
border: 2px solid white;
border-left-width: 3px;
z-index: -1;
}
.outer:before {
left: 0px;
border-radius: 20px;
border-right: none;
transform: skew(20deg);
transform-origin: top left;
}
.outer:after {
right: 0px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
border-left: none;
}
/* Just for demo of responsive nature */
.outer{
transition: all 1s;
}
.outer:hover{
height: 100px;
width: 400px;
line-height: 100px;
}
body{
background: lightblue;
}
&#13;
<div class='outer'>
Call me back
</div>
&#13;
<强>优势:强>
在下面的代码片段中,我为每个组件指定了不同的颜色,以便直观地说明如何实现形状:
.outer {
position: relative;
height: 75px;
width: 300px;
text-align: center;
line-height: 75px;
color: white;
text-transform: uppercase;
}
.outer:before,
.outer:after {
position: absolute;
content: '';
top: 0px;
height: 100%;
width: 55%;
background: purple;
border: 2px solid white;
border-left-width: 3px;
z-index: -1;
}
.outer:before {
left: 0px;
border-radius: 20px;
border-right: none;
transform: skew(20deg);
transform-origin: top left;
background: seagreen;
border-color: red;
}
.outer:after {
right: 0px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
border-left: none;
background: yellowgreen;
border-color: maroon;
}
/* Just for demo of responsive nature */
.outer{
transition: all 1s;
}
.outer:hover{
height: 100px;
width: 400px;
line-height: 100px;
}
body{
background: lightblue;
}
&#13;
<div class='outer'>
Call me back
</div>
&#13;
答案 2 :(得分:2)
这也可以使用CSS border-radius&#39;通过设置多个值。
它的曲率比示例图像略高,但它更清晰,并且不需要额外的元素或伪元素。
body {
background: lightblue;
font-family: sans-serif;
}
div {
background: purple;
width: 200px;
padding: 30px;
border: 3px solid white;
border-radius: 15px;
border-bottom-left-radius: 50px 150px;
color: white;
}
&#13;
<div>Some Text</div>
&#13;