1

我正在尝试创建一个像 div 这样的三角形可点击按钮,在所附图像中是我想要实际实现的。图片

这是我到目前为止所达到的,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; 
}
4

1 回答 1

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;
}

http://jsfiddle.net/TvJ6t/

于 2013-03-05T18:33:06.693 回答