Materialize - การ์ด
Materialize จัดเตรียมคลาส CSS ที่แตกต่างกันเพื่อใช้การปรับปรุงภาพและพฤติกรรมต่างๆที่กำหนดไว้ล่วงหน้าเพื่อแสดงการ์ดประเภทต่างๆ ตารางต่อไปนี้กล่าวถึงคลาสที่มีและผลกระทบ
ซีเนียร์ | ชื่อชั้นเรียนและคำอธิบาย |
---|---|
1 | card ระบุองค์ประกอบ div เป็นคอนเทนเนอร์การ์ด Materialize จำเป็นสำหรับ div "ภายนอก" |
2 | card-content ระบุ div เป็นที่เก็บเนื้อหาการ์ดและจำเป็นสำหรับ div "inner" |
3 | card-title ระบุ div เป็นที่เก็บหัวเรื่องการ์ดและจำเป็นสำหรับชื่อ div "inner" |
4 | card-action ระบุ div เป็นคอนเทนเนอร์การทำงานของการ์ดและกำหนดลักษณะข้อความที่เหมาะสมให้กับข้อความการดำเนินการ จำเป็นสำหรับการกระทำ "ภายใน" div; เนื้อหาจะเข้าไปใน div โดยตรงโดยไม่มีคอนเทนเนอร์แทรกแซง |
5 | card-image ระบุ div เป็นคอนเทนเนอร์อิมเมจการ์ดและจำเป็นสำหรับ div "inner" |
6 | card-reveal ระบุ div เป็นที่เก็บข้อความที่เปิดเผย |
7 | activator ระบุ div เป็นที่เก็บข้อความและรูปภาพที่เปิดเผยเพื่อเปิดเผย ใช้เพื่อแสดงข้อมูลตามบริบทที่เกี่ยวข้องกับรูปภาพ |
8 | card-panel ระบุ div เป็นการ์ดธรรมดาที่มีเงาและช่องว่างภายใน |
9 | card-small ระบุ div เป็นการ์ดขนาดเล็ก ความสูง: 300px; |
10 | card-medium ระบุ div เป็นการ์ดขนาดกลาง ความสูง: 400px; |
11 | card-large ระบุ div เป็นการ์ดขนาดใหญ่ ความสูง: 500px; |
ตัวอย่าง
ตัวอย่างต่อไปนี้แสดงการใช้คลาสการ์ดเพื่อแสดงการ์ดประเภทต่างๆ
materialize_cards.htm
<!DOCTYPE html>
<html>
<head>
<title>The Materialize Cards Example</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet"
href = "https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<script type = "text/javascript"
src = "https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js">
</script>
</head>
<body class = "container">
<div class = "row">
<div class = "col s12 m6">
<div class = "card blue-grey lighten-4">
<div class = "card-content">
<span class = "card-title"><h3>Learn HTML5</h3></span>
<p>HTML5 is the next major revision of the HTML standard superseding
HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for
structuring and presenting content on the World Wide Web.</p>
</div>
<div class = "card-action">
<button class = "btn waves-effect waves-light blue-grey">
<i class = "material-icons">share</i></button>
<a class = "right blue-grey-text" href = "http://www.tutorialspoint.com">
www.tutorialspoint.com</a>
</div>
</div>
</div>
<div class = "col s12 m6">
<div class = "card blue-grey lighten-4">
<div class = "card-image">
<img src = "html5-mini-logo.jpg">
</div>
<div class = "card-content">
<p>HTML5 is the next major revision of the HTML standard superseding
HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for
structuring and presenting content on the World Wide Web.</p>
</div>
<div class = "card-action">
<button class = "btn waves-effect waves-light blue-grey">
<i class = "material-icons">share</i></button>
<a class = "right blue-grey-text" href = "http://www.tutorialspoint.com">
www.tutorialspoint.com</a>
</div>
</div>
</div>
</div>
<div class = "row">
<div class = "col s12 m6">
<div class = "card blue-grey lighten-4">
<div class = "card-image waves-effect waves-block waves-light">
<img class = "activator" src = "html5-mini-logo.jpg">
</div>
<div class = "card-content activator">
<p>Click the image to reveal more information.</p>
</div>
<div class = "card-reveal">
<span class = "card-title grey-text text-darken-4">HTML5
<i class = "material-icons right">close</i></span>
<p>HTML5 is the next major revision of the HTML standard superseding
HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for
structuring and presenting content on the World Wide Web.</p>
</div>
<div class = "card-action">
<button class = "btn waves-effect waves-light blue-grey">
<i class = "material-icons">share</i></button>
<a class = "right blue-grey-text" href = "http://www.tutorialspoint.com">
www.tutorialspoint.com</a>
</div>
</div>
</div>
</div>
<div class = "row">
<div class = "col s12 m3">
<div class = "card-panel teal">
<span class = "white-text">Simple Card</span>
</div>
</div>
<div class = "col s12 m3">
<div class = "card small teal">
<span class = "white-text">Small Card</span>
</div>
</div>
<div class = "col s12 m3">
<div class = "card medium teal">
<span class = "white-text">Medium Card</span>
</div>
</div>
<div class = "col s12 m3">
<div class = "card large teal">
<span class = "white-text">Large Card</span>
</div>
</div>
</div>
</body>
</html>
ผลลัพธ์
ตรวจสอบผลลัพธ์