Materializacja - fale
Materialise używa Waves, zewnętrznej biblioteki, do tworzenia efektu atramentu opisanego w Material Design. Poniższa tabela wymienia dostępne klasy i ich efekty.
Sr.No. | Nazwa i opis klasy |
---|---|
1 | waves-effect Stosuje efekt fali do kontrolki. |
2 | waves-light Stosuje efekt fali w kolorze białym. |
3 | waves-red Stosuje efekt fali w kolorze czerwonym. |
4 | waves-green Stosuje efekt fali w kolorze zielonym. |
5 | waves-yellow Nakłada efekt fali w kolorze żółtym. |
6 | waves-orange Stosuje efekt fali w kolorze pomarańczowym. |
7 | waves-purple Stosuje efekt fali w kolorze fioletowym. |
8 | waves-teal Stosuje efekt fal w kolorze morskim. |
Przykład
Poniżej znajduje się przykład użycia efektów fal na przyciskach.
materialize_waves.htm
<!DOCTYPE html>
<html>
<head>
<title>The Materialize Waves Effects 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">
<h3>Waves Effects Demo</h3>
<div class = "collection waves-color-demo">
<div class = "collection-item">
<code class = " language-markup">Default</code>
<a href = "#!" class = "waves-effect btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-light</code>
<a href = "#!" class = "waves-effect waves-light btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-red</code>
<a href = "#!" class = "waves-effect waves-red btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-yellow</code>
<a href = "#!" class = "waves-effect waves-yellow btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-orange</code>
<a href = "#!" class = "waves-effect waves-orange btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-purple</code>
<a href = "#!" class = "waves-effect waves-purple btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-green</code>
<a href = "#!" class = "waves-effect waves-green btn secondary-content">
Click Me!</a>
</div>
<div class = "collection-item">
<code class = " language-markup">waves-teal</code>
<a href = "#!" class = "waves-effect waves-teal btn secondary-content">
Click Me!</a>
</div>
</div>
</body>
</html>
Wynik
Sprawdź wynik.