web-dev-qa-db-ja.com

Font Awesomeシンボルの上にバッジを追加する方法は?

Font Awesome シンボル(fa-envelope)の上に番号(5、10、100)のバッジを追加したいと思います。例えば:

the picture

しかし、シンボルの上にバッジを置く方法を理解できません。私の試みはここにあります: jsFiddle

Twitter Bootstrap 2.3.2をサポートしたいと思います。

53
LA_

これは、追加のマークアップなしで実行でき、新しいクラス(とにかく使用します)と擬似要素のみです。

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

@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;
}
26
Ger

fa-envelopespanの数値を含むdivをラップし、ラッパーdiv position:relativespanposition: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;
}

これがあなたの助けになることを願っています

19
James

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

アイコン要素内にバッジを配置することにより、アイコンコンテナの境界に対してバッジを配置することができました。 emsを使用してすべてのサイズ変更を行ったため、バッジのサイズはアイコンのサイズに比例し、.badgeのフォントサイズを変更するだけで変更できます。

10
MStrutt

これは機能しているようで、追加するコードはごくわずかです。

.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>
7
Dementic