箭头样式css按钮

时间:2014-07-02 21:42:10

标签: html css

我正在尝试制作一个大箭头按钮但箭头似乎偏离中心。谁能告诉我如何清理它并让它看起来正确?

#buttonboxback {
    left:20px;/*change the position*/
    top:10px;/*change the position*/
    position:absolute;
    background-repeat:repeat-x;
    background-color: #003366;/*change this and the background color for the :before element*/
        width:162px;
    height:56px;
    padding: 0 10px 0 8px;
    z-index : 0;
    border-radius: 6px;
    -webkit-border-top-left-radius : 10px 15px;
    -webkit-border-bottom-left-radius : 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    box-shadow :-1px -1px 0px rgba(0,0,0,0.2)inset,
        0 1px 2px rgba(0,0,0,0.8)inset;
    font-size : 11px;
    display : block;
    text-align:center;
    color:#fff;
    text-shadow : 0px -1px 0px #000;
    line-height : 30px;
    font-family : HelveticaNeue;
    font-weight: 700;
    -webkit-background-size : 30px;
}
#buttonboxback:before{
    position:absolute;
    top:9.9%;
    left:-15px;
    -webkit-background-size : 22px 22px;
    background-position :-2px -1.5px;
    background-color: #003366;
    height : 45px;
    width: 60px;
    -webkit-transform : rotate(-45deg) skew(-10deg, -10deg);
    -webkit-border-top-right-radius : 100px 40px;
    -webkit-border-top-left-radius : 30px 2px;
    -webkit-border-bottom-right-radius : 2px 30px;
    -webkit-border-bottom-left-radius : 40px 100px;
    z-index : 1;
    content : ' ';
    border-left : 1.5px solid rgba(255,255,255,0.3);
    box-shadow :  1px 1px 0 rgba(0,0,0,0.2) inset,
        -1px 1px 1px rgba(0,0,0,0.5) inset;
    -webkit-mask-image :
        -webkit-gradient(linear, left top, right bottom,
            from(#000000),
            color-stop(0.33,#000000),
            color-stop(0.5, transparent),
            to(transparent));
}

http://jsfiddle.net/9RHXS/

谢谢!

更新:我调整了代码并添加了悬停,但悬停不能正常工作..

http://jsfiddle.net/9RHXS/2/

3 个答案:

答案 0 :(得分:3)

这是使用边框,伪类和绝对定位的更简单的解决方案:http://jsfiddle.net/9RHXS/5/

EDITED VERSION:引入了悬停效果

HTML:

<div id="buttonboxback"><a href="index.php">BACK</a></div>

CSS:

#buttonboxback {
    width: 150px;
    height: 40px;
    background-color: darkblue;
    position: relative;
    margin-left: 40px;
    border-radius: 5px;
}

#buttonboxback:before {
    content: "";
    position: absolute;
    top: 0;
    left: -17px;
    border-style: solid;
    border-width: 20px 20px 20px 0;
    border-color: transparent darkblue transparent transparent;
}

#buttonboxback > a {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font: bold 18px/40px Sans-Serif;
}

#buttonboxback:hover {
    background-color: lightblue;
}

#buttonboxback:hover:before {
    border-right-color: lightblue;
}

答案 1 :(得分:0)

你的箭头有绝对的位置。这意味着它将由它的相对元素呈现,以定位我们想要的位置。您现在的元素,将top属性设置为9.9%。这对它来说是一个巨大的价值。更改了箭头top的{​​{1}}属性,现在可以正常工作。

将其更改为

:before

现在有效。并且它在应该的位置对齐。

现在看看:http://jsfiddle.net/afzaal_ahmad_zeeshan/9RHXS/1/

答案 2 :(得分:0)

只需将top元素的#buttonboxback:before值更改为0

#buttonboxback:before {
    position:absolute;
    top:0;

http://jsfiddle.net/9RHXS/2/