Material Design Lite 互动版

在线工具推荐: Three.js AI纹理开发包 - YOLO合成数据生成器 - GLTF/GLB在线编辑 - 3D模型格式在线转换 - 可编程3D场景编辑器

图标/Icon

Google提供了适用于Material Design的图标字体,我们可以直接在前端样式表中使用@font-face 引用这些字体:

/*icon.css*/
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'), local('MaterialIcons-Regular'), 
         url(material-icons.woff2) format('woff2'), 
       url(material-icons.woff) format('woff');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;    
  /*text-rendering must be set for local host fonts*/
  text-rendering: optimizeLegibility;
  -moz-font-feature-settings: 'liga';
  -moz-osx-font-smoothing: grayscale;
}

在页面中要使用图标字体,只需要应用上面定义的material-icons样式:

<i class="material-icons">face</i>

上面的示例创建了一个笑脸图标,face用来指定要显示的图标,也可以 使用其对应的数字编码:

<i class="material-icons">&amp;#xE87C;</i>

具体的图标名和编码,参阅Material Icons官网(需翻墙):https://www.google.com/design/icons/

图标大小依赖于字体大小。试着修改示例代码的样式,使图标大小为36px!