如何在Font Awesome符号顶部添加徽章?

时间:2014-03-29 19:21:28

标签: css font-awesome badge

我想在Font Awesome符号(fa-envelope)的顶部添加带有一些数字(5,10,100)的徽章。例如:

the picture

但是,我无法理解如何将徽章放在符号的顶部。我的尝试可以在这里找到:jsFiddle

我想支持Twitter Bootstrap 2.3.2。

6 个答案:

答案 0 :(得分:63)

这可以在没有额外标记的情况下完成,只需要一个新类(无论如何都会使用)和伪元素。

<强> JSFiddle Demo

<强> HTML

<i class="fa fa-envelope fa-5x fa-border icon-grey badge"></i>

<强> CSS

*.icon-blue {color: #0088cc}
*.icon-grey {color: grey}
i {   
    width:100px;
    text-align:center;
    vertical-align:middle;
    position: relative;
}
.badge:after{
    content:"100";
    position: absolute;
    background: rgba(0,0,255,1);
    height:2rem;
    top:1rem;
    right:1.5rem;
    width:2rem;
    text-align: center;
    line-height: 2rem;;
    font-size: 1rem;
    border-radius: 50%;
    color:white;
    border:1px solid blue;
}

答案 1 :(得分:23)

虽然@Paulie_D的答案很好,但是当你有一个可变宽度的容器时它不能很好地工作。

此解决方案的效果更好:http://codepen.io/johnstuif/pen/pvLgYp

HTML:

<span class="fa-stack fa-5x has-badge" data-count="8,888,888">
  <i class="fa fa-circle fa-stack-2x"></i>
  <i class="fa fa-bell fa-stack-1x fa-inverse"></i>
</span>

CSS:

.fa-stack[data-count]:after{
  position:absolute;
  right:0%;
  top:1%;
  content: attr(data-count);
  font-size:30%;
  padding:.6em;
  border-radius:999px;
  line-height:.75em;
  color: white;
  background:rgba(255,0,0,.85);
  text-align:center;
  min-width:2em;
  font-weight:bold;
}

答案 2 :(得分:19)

fa-envelope和包含该号码的span换成div并制作包装器div position:relativespan position:absolute

选中此fiddle

使用HTML

<div class="icon-wrapper">
   <i class="fa fa-envelope fa-5x fa-border icon-grey"></i>
   <span class="badge">100</span>
</div>

CSS

.icon-wrapper{
    position:relative;
    float:left;
}

*.icon-blue {color: #0088cc}
*.icon-grey {color: grey}
i {   
    width:100px;
    text-align:center;
    vertical-align:middle;
}
.badge{
    background: rgba(0,0,0,0.5);
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 50%;
    position:absolute;
    top:-13px;
    right:-8px;
    padding:5px;
}

希望这可以帮到你

答案 3 :(得分:10)

http://jsfiddle.net/zxVhL/16/

通过将徽章放在图标元素内,我可以相对于图标容器的边界定位徽章。我使用em完成了所有大小调整,以便徽章的大小相对于图标的大小而言,只需更改.badge

中的字体大小即可更改

答案 4 :(得分:6)

这似乎有效,并且只需添加很少的代码。

.badge{
  position: relative;
  margin-left: 60%;
  margin-top: -60%;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<span class="fa-stack fa-3x">
  <i class="fa fa-circle fa-stack-2x"></i>
  <i class="fa fa-bell fa-stack-1x fa-inverse"></i>
  <span class="badge">17</span>
</span>
<span class="fa-stack fa-2x">
  <i class="fa fa-circle fa-stack-2x"></i>
  <i class="fa fa-bell fa-stack-1x fa-inverse"></i>
  <span class="badge">17</span>
</span>
<span class="fa-stack fa-1x">
  <i class="fa fa-circle fa-stack-2x"></i>
  <i class="fa fa-bell fa-stack-1x fa-inverse"></i>
  <span class="badge">17</span>
</span>

答案 5 :(得分:0)

如果您使用的是Font Awesome的SVG + JS版本:

https://fontawesome.com/how-to-use/on-the-web/styling/layering

图层是将图标和文本视觉上彼此叠加的新方法。

<span class="fa-layers fa-fw">
    <i class="fas fa-envelope"></i>
    <span class="fa-layers-counter" style="background:Tomato">1,419</span>
</span>