我试图通过CSS来实现带有定位(带翻页效果)角落的带边框按钮,例如:
http://jsfiddle.net/dmxt/75Fkv/
HTML:
<a class="btn-note" href="#" role="button">gratis prøve</a>
CSS:
.btn-note {
font-family: sans-serif;
font-size: 36px;
position: relative;
border: solid 5px #00ABE2;
color: #00ABE2;
padding: 10px 80px 10px 10px;
text-decoration: none;
text-transform: uppercase;
}
.btn-note:before {
content: "";
position: absolute;
bottom: -2px;
right: -2px;
border-width: 30px 30px 0 0;
border-style: solid;
border-color: #00ABE2 rgba(0,0,0,0);
}
.btn-note:hover {
text-decoration: none;
color: #fff;
border-color: #fff;
}
谢谢,我希望我能得到答案。我已经尝试了很长时间。谢谢!
答案 0 :(得分:4)
至少有3种方法可以实现这一点(仅使用伪元素,如果使用附加HTML元素,我们甚至还有更多方法),每种方法都有自己的优势。我想介绍两种方法。第一个使用2个伪元素。第二个使用多背景功能和一个伪元素和calc
功能(看起来像支持多背景功能的浏览器也应支持calc
功能,并且仅< strong> IE8 被认为是一个相当古老的浏览器,不支持这些功能。)
<强> 1。第一个解决方案:
.btn-note {
font-family: sans-serif;
font-size: 36px;
position: relative;
border: solid 5px #00ABE2;
border-right:0;
color: #00ABE2;
padding: 10px 50px 10px 10px;
text-decoration: none;
text-transform: uppercase;
}
/* render the triangle corner */
.btn-note:before {
content: "";
position: absolute;
left:100%;
bottom:-5px;
border-width: 15px;
border-style: solid;
border-color: inherit;
border-right-color:transparent;
border-bottom-color:transparent;
}
/* render the right border */
.btn-note:after {
content:'';
position:absolute;
box-sizing:border-box;
width:30px;
left:100%;
top:-5px;
bottom:25px;
border-width:5px 5px 0 0;
border-color:inherit;
border-style:solid;
}
.btn-note:hover {
text-decoration: none;
color: #fff;
border-color: #fff;
}
body {
background:url(http://lorempixel.com/800/600);
}
<强> 2。第二个解决方案:
.btn-note {
font-family: sans-serif;
font-size: 36px;
position: relative;
border: solid 5px #00ABE2;
border-right:0;
border-bottom:0;
color: #00ABE2;
padding: 10px 80px 10px 10px;
text-decoration: none;
text-transform: uppercase;
background:linear-gradient(to top, #00abe2,#00abe2),
linear-gradient(to left, #00abe2, #00abe2);
background-repeat:no-repeat;
background-size:calc(100% - 30px) 5px, 5px calc(100% - 30px);
background-position: left 0 bottom 0, right 0 top 0;
}
.btn-note:before {
content: "";
position: absolute;
right:0;
bottom:0;
border-width: 15px;
border-style: solid;
border-color: inherit;
border-right-color:transparent;
border-bottom-color:transparent;
}
.btn-note:hover {
text-decoration: none;
color: #fff;
border-color: #fff;
background-image:linear-gradient(to top, #fff,#fff),
linear-gradient(to left, #fff, #fff);
}
body {
background:url(http://lorempixel.com/800/600);
}
两个解决方案之间的区别在于,虽然文本可以使用第二个解决方案扩展到边界框的整个内部宽度(使用5px边框),但第一个解决方案将文本限制在{{的实际宽度内部距离边界框右边约.btn-note
的1}}。这意味着第二种解决方案会好一点。
答案 1 :(得分:0)
试试这个:
.btn-note:before {
content: "";
position: absolute;
bottom: -5px;
right: -5px;
border-width: 30px 30px 0 0;
border-style: solid;
border-color: #00ABE2 black;
}
在你的&#34; rgba(0,0,0,0)&#34;将黑色边框设置为透明,主矩形中的蓝色显示为。
编辑:
Ok这个可缩放矢量图形(SVG)方法怎么样?
<svg height="200" width="400">
<polygon points="0,0 400,0 400,150 350,200 0,200"
style="fill:none; stroke:#00ABE2;stroke-width:15" />
<polygon points="350,150 400,150 350,200"
style="fill:#00ABE2;stroke:#00ABE2;stroke-width:10" />
<text x="50" y="100" fill="#00ABE2" font-size="3em">Gratis</text>
</svg>
JS小提琴:link
W3学校教程:link
旧浏览器可能不支持此SVG内容。
答案 2 :(得分:0)
试试此代码
<div class="note">
<div class="innerNote">
Your Content
</div>
</div>
.note {
position: relative;
width: 30%;
padding: 5px;
margin: 2em auto;
color: #fff;
background: blue;
overflow: hidden;
}
.note:before {
content: "";
position: absolute;
bottom: 0;
right: 0;
border-width: 25px 25px 0 0; /* you can manage the size of corner here*/
border-style: solid;
border-color: blue #fff;
}
.innerNote{
padding: 10px;
color: #fff;
background: #000;
}
选中此Demo
答案 3 :(得分:0)
我这样做了,效果很好。绿色背景可以替换为图像背景,它应该工作正常。
.green_background{
background:#009966;width:200;
height:100;
padding:30px 10px 10px 10px;
font-family:sans-serif,verdana,helvetica;
font-size:20px;
text-align:center;
}
.example_holder{
background:#000000;
float:left;
padding-top:20px;
border-bottom: 4px solid #00ccff;
border-right: 0px solid #00ccff;
border-left: 4px solid #00ccff;
border-top:4px solid #00ccff;
margin-right:0;
color:#ffffff;
height:40%;
width:77.8%;
}
.top_right_corner{
float:right;
background:#000000;
border-right: 4px solid #00ccff;
border-left:0px solid #000000;
border-top:4px solid #00ccff;
margin-left:0px;
bottom:0px;
width:18.8%;
height:22%;
}
.bottom_right_corner{
float:right;
background:transparent;
border-bottom: 21px solid transparent;
border-right: 21px solid transparent;
border-left: 20px solid #00ccff;
border-top:20px solid #00ccff;
bottom:0px;
width:0;
height:0;
}
您需要注意每个元素的边框和宽度的大小。查看working example
<div class="green_background">
<div class="example_holder">Example</div>
<div class="top_right_corner"></div>
<div class="bottom_right_corner"></div>
</div>