Font Awesome - 載入動畫圖示



本章解釋了 Font Awesome 載入動畫圖示的使用方法。假設 **custom** 是我們定義大小和顏色的 CSS 類名,如下例所示。

<html>
   <head>
      <link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">

      <style>
         i.custom {font-size: 2em; color: gray;}
      </style>
		
   </head>
	
   <body>
      <i class = "fa fa-adjust custom"></i>
   </body>
	
</html>

下表顯示了 Font Awesome 載入動畫圖示的使用方法和結果。將上面程式的 < body > 標記替換成表中給出的程式碼,即可獲得相應的輸出 -

用法 結果
<i class="fa fa-circle-o-notch custom"></i>
<i class="fa fa-cog custom"></i>
<i class="fa fa-gear custom"></i>
<i class="fa fa-refresh custom"></i>
<i class="fa fa-spinner custom"></i>
廣告

© . All rights reserved.