最新的Web开发教程
 

W3.CSS图标


图标库

随着W3.CSS你可以使用任何的图标库,如:

  • 字体真棒图标
  • 谷歌图标材料
  • 引导图标

使用图标

要使用图标,只需添加图标的名称类的HTML <I>元素。

为了控制图标的大小,图标的字体大小属性的变化,或者使用w3- 尺寸的类:

  • W3-微小
  • W3小
  • W3-大
  • W3-xxlarge
  • W3-xxxlarge

字体真棒图标


发发到户

发发酒吧

发发左箭头

发发右箭头

发发搜索

发发闭

发发刷新

发FA-垃圾

发发男性

发发汽车

发发卡车

发发面

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css">
<body>

<i class="fa fa-cloud"></i>
<i class="fa fa-cloud w3-large"></i>
<i class="fa fa-cloud w3-xlarge"></i>
<i class="fa fa-cloud w3-xxlarge"></i>
<i class="fa fa-cloud w3-xxxlarge"></i>
<i class="fa fa-cloud w3-text-teal" style="font-size:64px"></i>

</body>
</html>
试一试»

注意 对于图标的完整列表: 请访问我们的图标参考


谷歌材料设计图标


菜单
菜单
arrow_back
arrow_back
arrow_forward
arrow_forward
搜索
搜索

刷新
刷新
删除
删除

directions_car
directions_car
local_shipping
local_shipping
local_airport
local_airport

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<body>

<i class="material-icons">cloud</i>
<i class="material-icons w3-large">cloud</i>
<i class="material-icons w3-xlarge">cloud</i>
<i class="material-icons w3-xxlarge">cloud</i>
<i class="material-icons w3-xxxlarge">cloud</i>
<i class="material-icons w3-text-teal" style="font-size:64px">cloud</i>

</body>
</html>
试一试»

引导图标



菜单汉堡包

arrow_back

arrow_forward


搜索

去掉

刷新

垃圾


用户

文件

打印

平面

<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3ii.com/lib/w3.css">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<body>

<i class="glyphicon glyphicon-cloud"></i>
<i class="glyphicon glyphicon-cloud w3-large"></i>
<i class="glyphicon glyphicon-cloud w3-xlarge"></i>
<i class="glyphicon glyphicon-cloud w3-xxlarge"></i>
<i class="glyphicon glyphicon-cloud w3-xxxlarge"></i>
<i class="glyphicon glyphicon-cloud w3-text-teal" style="font-size:64px"></i>

</body>
</html>
试一试»