재질-아이콘 전환
이 장에서는 Google의 (Material) Toggle 아이콘 사용에 대해 설명합니다. 그것을 가정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의 (Material) Toggle 아이콘의 사용법과 결과가 포함되어 있습니다. 위 프로그램의 <body> 태그를 표에 주어진 코드로 대체하여 각 출력을 얻습니다.
용법 | 결과 |
---|---|
<i class = "material-icons custom"> 체크 박스 </ i> | 체크 박스 |
<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 |
<i class = "material-icons custom"> 별표 </ i> | 별 |
<i class = "material-icons custom"> star_border </ i> | star_border |
<i class = "material-icons custom"> star_half </ i> | star_half |