マテリアル-アイコンの切り替え
この章では、Googleの(マテリアル)トグルアイコンの使用法について説明します。と仮定するcustom 以下の例に示すように、サイズと色を定義したCSSクラス名です。
<!DOCTYPE html>
<html>
<head>
<link href = "https://fonts.googleapis.com/icon?family=Material+Icons" rel = "stylesheet">
<style>
i.custom {font-size: 2em; color: green;}
</style>
</head>
<body>
<i class = "material-icons custom">accessibility</i>
</body>
</html>
次の表に、Googleの(マテリアル)トグルアイコンの使用法と結果を示します。上記のプログラムの<body>タグを表に示されているコードに置き換えて、それぞれの出力を取得します-
使用法 | 結果 |
---|---|
<i class = "material-iconscustom">チェックボックス</ i> | check_box |
<i class = "material-icons custom"> check_box_outline_blank </ i> | check_box_outline_blank |
<i class = "material-icons custom"> indeterminate_check_box </ i> | indeterminate_check_box |
<i class = "material-icons custom"> radio_button_checked </ i> | radio_button_checked |
<i class = "material-icons custom"> radio_button_unchecked </ i> | radio_button_unchecked |
<iclass = "material-iconscustom">スター</ i> | 星 |
<i class = "material-icons custom"> star_border </ i> | star_border |
<i class = "material-icons custom"> star_half </ i> | star_half |