我正在尝试创建一个像div一样的三角形可点击按钮,在附加的图像中我想要实际实现。 image
这是我到目前为止所达到的,JsFiddle
HTML:
<div class="input"><</div>
CSS:
body {padding:40px;}
.input {
text-decoration:none;
padding:5px 10px;
background:#117ebb;
font-size:9px;
color:#fff;
border-radius:5.5px 0px 0px 5px;
box-shadow: 0px 5px 3px #003355;
position:relative;
width:1px;
height:12px;
}
.input:after {
position:absolute;
top:0px;
left:-10px;
content:" ";
width: 0;
height: 0px;
border-top: 13px solid transparent;
border-bottom: 13px solid transparent;
border-right:13px solid #117ebb;
border-radius:0px 0px 0px 20px;
}
答案 0 :(得分:0)
css纯三角形和jquery你可以添加点击事件:
HTML
<div class="input"></div>
jquery的
$(document).ready(function(){
$(".input").click(function(){
alert('hello arrow');
});
});
CSS
body {padding:40px;}
.input{
width: 0;
height: 0;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right:10px solid blue;
cursor: pointer;
}