Material Design Lite - ไอคอน
MDL มีคลาส CSS ที่หลากหลายเพื่อใช้การปรับปรุงภาพและพฤติกรรมต่างๆที่กำหนดไว้ล่วงหน้าและแสดงช่องทำเครื่องหมายประเภทต่างๆเป็นไอคอน ตารางต่อไปนี้แสดงรายการคลาสที่มีและเอฟเฟกต์
ซีเนียร์ | ชื่อชั้นเรียนและคำอธิบาย |
---|---|
1 | mdl-icon-toggle ระบุเลเบลเป็นส่วนประกอบ MDL และจำเป็นสำหรับองค์ประกอบฉลาก |
2 | mdl-js-icon-toggle ตั้งค่าลักษณะการทำงานของ MDL พื้นฐานเป็นฉลากและจำเป็นสำหรับองค์ประกอบฉลาก |
3 | mdl-icon-toggle__input ตั้งค่าลักษณะการทำงานของ MDL พื้นฐานเป็นไอคอนสลับและจำเป็นสำหรับองค์ประกอบอินพุต (icon-toggle) |
4 | mdl-icon-toggle__label ตั้งค่าลักษณะการทำงานของ MDL พื้นฐานให้เป็นคำอธิบายภาพและจำเป็นสำหรับองค์ประกอบ i (ไอคอน) |
5 | mdl-js-ripple-effect ตั้งค่าเอฟเฟกต์การคลิกระลอกและเป็นทางเลือก ไปที่องค์ประกอบป้ายกำกับและไม่อยู่ในองค์ประกอบอินพุต (icon-toggle) |
ตัวอย่าง
ตัวอย่างต่อไปนี้แสดงการใช้ mdl-icon-toggle คลาสเพื่อแสดงช่องทำเครื่องหมายประเภทต่างๆเป็นไอคอน
mdl_icons.htm
<html>
<head>
<script
src = "https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js">
</script>
<link rel = "stylesheet"
href = "https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-pink.min.css">
<link rel = "stylesheet"
href = "https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<table>
<tr><td>On Icon</td><td>Off Icon</td>
<td>Disabled Icon</td></tr>
<tr>
<td>
<label class = "mdl-icon-toggle mdl-js-icon-toggle mdl-js-ripple-effect"
for = "icon-toggle-1">
<input type = "checkbox" id = "icon-toggle-1"
class = "mdl-icon-toggle__input" checked>
<i class = "mdl-icon-toggle__label material-icons">format_bold</i>
</label>
</td>
<td>
<label class = "mdl-icon-toggle mdl-js-icon-toggle mdl-js-ripple-effect"
for = "icon-toggle-2">
<input type = "checkbox" id = "icon-toggle-2"
class = "mdl-icon-toggle__input">
<i class = "mdl-icon-toggle__label material-icons">format_italic</i>
</label>
</td>
<td>
<label class = "mdl-icon-toggle mdl-js-icon-toggle mdl-js-ripple-effect"
for = "icon-toggle-2">
<input type = "checkbox" id = "icon-toggle-2"
class = "mdl-icon-toggle__input" disabled>
<i class = "mdl-icon-toggle__label material-icons">format_underline</i>
</label>
</td>
</tr>
</table>
</body>
</html>
ผลลัพธ์
ตรวจสอบผลลัพธ์