Bootstrap图标

本文转载于:猿2048网站➼Bootstrap图标php

前面的话

  小图标icon是一个优秀Web中不可缺乏的一部分,起到画龙点睛的效果。在Bootstrap框架中也为你们提供了250多个不一样的icon图片。本文将详细介绍Bootstrap图标html

 

原理分析

  Bootstrap框架中的图标都是字体图标,其实现原理就是经过@font-face属性加载了字体web

@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

  自定义完字体以后,须要对icon设置一个默认样式,在Bootstrap框架中是经过给元素添加“glyphicon”类名来实现,而后经过伪元素“:before”的“content”属性调取对应的icon编码bootstrap

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
    content: "\2a";
}

 

使用

  全部icon都是以”glyphicon-”前缀的类名开始,而后后缀表示图标的名称,详细状况移步至此,全部图标都须要一个基类和对应每一个图标的类框架

  在网页中使用图标很是的简单,在任何内联元素上应用所对应的样式便可svg

<span class="glyphicon glyphicon-search"></span>
<span class="glyphicon glyphicon-ok"></span>
<span class="glyphicon glyphicon-remove"></span>
<span class="glyphicon glyphicon-plus"></span>
<span class="glyphicon glyphicon-cloud"></span>
<span class="glyphicon glyphicon-heart"></span>

  为了设置正确的内边距(padding),务必在图标和文本之间添加一个空格字体

<button type="button" class="btn btn-default btn-lg">
  <span class="glyphicon glyphicon-star" aria-hidden="true"></span> Star
</button>

  [注意]图标类最好应用在不包含任何文本内容或子元素的元素上。图标类不能和其它组件直接联合使用。它们不能在同一个元素上与其余类共同存在。应该建立一个嵌套的 <span> 标签,并将图标类应用到这个 <span> 标签上网站

 

可访问性

  现代的辅助技术可以识别并朗读由 CSS 生成的内容和特定的 Unicode 字符。为了不屏幕识读设备抓取非故意的和可能产生混淆的输出内容(尤为是当图标纯粹做为装饰用途时),为这些图标设置了 aria-hidden="true" 属性。编码

  若是使用图标是为了表达某些含义(不单单是为了装饰用),请确保所要表达的意思可以经过被辅助设备识别,例如,包含额外的内容并经过 .sr-only 类让其在视觉上表现出隐藏的效果。url

  若是所建立的组件不包含任何文本内容(例如, <button> 内只包含了一个图标),应当提供其余的内容来表示这个控件的意图,这样就能让使用辅助设备的用户知道其做用了。这种状况下,能够为控件添加 aria-label 属性

<div class="alert alert-danger" role="alert">
  <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
  <span class="sr-only">Error:</span>
  Enter a valid email address
</div>
相关文章
相关标签/搜索