Material - Navigationssymbole
In diesem Kapitel wird die Verwendung der Navigationssymbole von Google (Material) erläutert. Annehmen, dasscustom ist der CSS-Klassenname, in dem wir die Größe und Farbe definiert haben, wie im folgenden Beispiel gezeigt.
<!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>
Die folgende Tabelle enthält die Verwendung und die Ergebnisse der Navigationssymbole von Google (Material). Ersetzen Sie das <body> -Tag des obigen Programms durch den in der Tabelle angegebenen Code, um die entsprechenden Ausgaben zu erhalten -
Verwendung | Ergebnis |
---|---|
<i class = "material-icons custom"> Apps </ i> | Apps |
<i class = "material-icons custom"> arrow_back </ i> | arrow_back |
<i class = "material-icons custom"> arrow_drop_down </ i> | arrow_drop_down |
<i class = "material-icons custom"> arrow_drop_down_circle </ i> | arrow_drop_down_circle |
<i class = "material-icons custom"> arrow_drop_up </ i> | arrow_drop_up |
<i class = "material-icons custom"> arrow_forward </ i> | Pfeil vorwärts |
<i class = "material-icons custom"> Abbrechen </ i> | stornieren |
<i class = "material-icons custom"> check </ i> | prüfen |
<i class = "material-icons custom"> chevron_left </ i> | chevron_left |
<i class = "material-icons custom"> chevron_right </ i> | chevron_right |
<i class = "material-icons custom"> schließen </ i> | schließen |
<i class = "material-icons custom"> expand_less </ i> | expand_less |
<i class = "material-icons custom"> expand_more </ i> | expand_more |
<i class = "material-icons custom"> Vollbild </ i> | ganzer Bildschirm |
<i class = "material-icons custom"> fullscreen_exit </ i> | fullscreen_exit |
<i class = "material-icons custom"> Menü </ i> | Speisekarte |
<i class = "material-icons custom"> more_horiz </ i> | more_horiz |
<i class = "material-icons custom"> more_vert </ i> | more_vert |
<i class = "material-icons custom"> aktualisieren </ i> | Aktualisierung |