我遇到了一个小问题。我正在实现网站设计,需要实现一些复杂的按钮样式(附在此处)。我不知道如何仅使用CSS。
它将是几个按钮样式,其中一个必须具有透明背景,并且必须从放置此按钮的元素获得背景颜色。我实现了可以使用CSS设置的自定义背景按钮。但它不灵活使用。如果我想在不同的背景上使用它,你应该添加新的样式,如“btn-customColor”等。现在我有透明背景的样式,它看起来:
关键是我无法在透明背景的顶部块下切割或隐藏底部块的部分。我可以设置颜色,它就像第一张图片。但它限制了按钮的使用。我可以用btn-transparent代替btn-blue,btn-green,btn-white等。
我有另一个想法在Photoshop中绘制按钮,但这不是很好的方法,这里有很多“不”。也许可以使用画布或smth来实现。像那样?如果是的话,如果您共享一些文章链接等,那就太棒了。
有一些人员可以使用:HTML,CSS,JS(jQuery)。
我希望我解释了问题所在。 任何想法和帮助表示赞赏。
感谢您的时间。
.btn-base {
padding: 0;
margin: 0;
height: 30px;
outline: none;
border-radius: 3px;
background: transparent;
border: 2px solid #fff;
font-size: 12px;
transition: 0.5s;
}
.btn-base>div {
position: relative;
width: 101%;
left: 3px;
bottom: 8px;
padding: 5px 15px;
outline: none;
border-radius: 3px;
background: #e4645d;
/* hardcoded code, must be transparent */
border: 2px solid #fff;
font-size: 12px;
}
<button type="submit" class="btn-base btn-transparent">
<div>Button example</div>
</button>
答案 0 :(得分:8)
考虑使用伪元素作为替代解决方案。
此方法在下面嵌入的代码段中针对x3不同的背景颜色进行了演示。
代码段示范:
extern "C"
&#13;
.row {
padding: 20px;
}
.row:nth-child(1) {
background: #e4645d;
}
.row:nth-child(2) {
background: #5dace4;
}
.row:nth-child(3) {
background: #5fe45d;
}
.btn-base {
padding: 0;
margin: 0;
height: 30px;
outline: none;
border-radius: 3px;
background: transparent;
border: 2px solid #fff;
font-size: 12px;
transition: 0.5s;
/* added */
position: relative; /* required for absolutely positioned pseudo-elements */
padding: 0px 10px;
}
/* Additional */
.btn-base:before {
content: "";
position: absolute;
width: 7px;
height: 30px;
border: 2px solid #fff;
border-right: 0;
right: 100%;
bottom: -5px;
top: 5px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
box-sizing: border-box;
}
.btn-base:after {
content: "";
position: absolute;
border: 2px solid #fff;
height: 9px;
border-top: 0;
border-left: 0;
right: 5px;
left: 0;
bottom: -9px;
border-bottom-right-radius: 3px;
box-sizing: border-box;
}
&#13;
答案 1 :(得分:4)
你只能使用盒子阴影属性
body{
background:#e4645d;
text-align:center;
}
.btn-base {
padding: 10px;
margin: 0;
outline: none;
border-radius: 3px;
background: transparent;
border: 2px solid #fff;
font-size: 12px;
transition: 0.5s
color:white;
box-shadow: -10px 10px 0 -2px #e4645d, -10px 10px 0 0px white;
}
&#13;
<button type="submit" class="btn-base btn-transparent">
Button example
</button>
&#13;
答案 2 :(得分:3)
以下是我的表现。请注意我更改了标记,使它们成为常见包装的兄弟姐妹。我用了background-color: inerhit
。概念证明:
.btn-base {
padding: 0;
margin: 0;
height: 30px;
outline: none;
border-radius: 3px;
background: transparent;
border: 2px solid #fff;
font-size: 12px;
transition: 0.5s;
color: white;
position: absolute;
width: 100%;
}
.button-holder>div {
color: white;
position: relative;
width: calc(100% + 2px);
left: 5px;
bottom: 8px;
padding: 5px 15px;
outline: none;
border-radius: 3px;
background-color: inherit;
border: 2px solid #fff;
font-size: 12px;
box-sizing: border-box;
}
body {
background-color: teal;
}
.button-holder {
background-color: inherit;
display: inline-block;
position: relative;
}
&#13;
<div class="button-holder">
<button type="submit" class="btn-base btn-transparent"></button>
<div>Button example</div>
</div>
&#13;
答案 3 :(得分:3)
对于现代浏览器(除了IE / Edge ),您可以使用clip-path
css属性并创建一个多边形来剪切背面的元素,只显示您想要的部分。 / p>
这将使其真正透明,即使它甚至可以出现在图像上。
body{background:url('https://placeimg.com/640/480/animals') no-repeat;}
.btn-base {
margin: 0;
height: 30px;
outline: none;
border-radius: 3px;
border: 2px solid currentColor;
font-size: 12px;
transition: 0.5s;
padding: 5px 15px;
font-size: 12px;
position:relative;
background:transparent;
color:#fff;
cursor:pointer;
}
.btn-base:before {
content:'';
position: absolute;
width: 100%;
height:100%;
left: -7px;
bottom: -10px;
border-radius: 3px;
/* hardcoded code, must be transparent */
border: 2px solid currentColor;
cursor:pointer;
-webkit-clip-path: polygon(0 0, 5% 0, 5% 88%, 100% 88%, 100% 100%, 0 100%);
clip-path: polygon(0 0, 5% 0, 5% 70%, 100% 70%, 100% 100%, 0 100%);
}
<button type="submit" class="btn-base">
Button example
</button>
答案 4 :(得分:0)
您可以使用box-shadow模仿边框以创建多边框外观。
示例:
button {
border: 0;
background: #666;
box-shadow: -8px 8px 0 -4px #FFF,
-8px 8px 0 0px #666;
}
<button>Sample</button>