像推文一样创建Twitter计数标注背景

时间:2013-03-13 16:23:21

标签: c# asp.net css c#-4.0 css3

我正在为我的网站创建一个“赞”按钮。它是我自己定制的按钮,可以更改我网站数据库中的某些值。我希望通过诸如Twitter“关注”/“推文”和Facebook“赞”/“共享”按钮之类的标注背景来显示LIKE计数。有些像这样:

enter image description here

我无法在CSS中形成任何关于如何做到这一点的逻辑,因为我不是那么专业的CSS。我还使用谷歌Chrome的Inspect Element功能检查了Twitter代码,但无法找到任何这样做的CSS。我想到的另一件事是它只是一个空的标注图像与文本重叠。但没有找到任何这样的图像。谁能告诉我怎么做?

1 个答案:

答案 0 :(得分:4)

尝试这个最简单的实现:

CSS:

.callout {
    position: relative;
    margin: 18px 0;
    padding: 18px 20px;
    background-color: #eef4f9;
    /* easy rounded corners for modern browsers */
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.callout .notch {
    position: absolute;
    top: -10px;
    left: 20px;
    margin: 0;
    border-top: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #eef4f9;
    padding: 0;
    width: 0;
    height: 0;
    /* ie6 height fix */
    font-size: 0;
    line-height: 0;
     /* ie6 transparent fix */
    _border-right-color: pink;
    _border-left-color: pink;
    _filter: chroma(color=pink);
}

HTML:

<div class="callout">
    This is a callout box!
    <b class="notch"></b>
</div>

现场演示:http://jsfiddle.net/yCw3T/