ShapeYourPath
(current)
Run Code
Live Code Editor-Materialize Card Reveal
Source Code
<!DOCTYPE html> <html lang="en"> <head> <title>The Materialize Example</title> <meta name="viewport" content="width = device-width, initial-scale = 1" /> <meta name="robots" content="noindex,nofollow"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/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/1.0.0/js/materialize.min.js"></script> <style type="text/css"> h2 { font-size: 28px; } </style> </head> <body> <h1 class="center-align">Materialize Card Reveal</h1> <div class="container"> <div class="row"> <div class="col s12 m6 offset-m5"> <div class="card"> <div class="card-image waves-effect waves-block waves-light"> <img src="https://picsum.photos/id/1/200/300" alt="image" style="height:150px;"> </div> <div class="card-content"> <span class="card-title activator grey-text text-darken-4">Shape Your Path <i class="material-icons right">more_vert</i> </span> <p> <a href="http://www.shapeyourpath.com" target="_blank">Click Here!</a> </p> </div> <div class="card-reveal"> <span class="card-title grey-text text-darken-4"> Shape Your Path <i class="material-icons right">close</i> </span> <p>Providing front-end and back-end web development tutorials.</p> </div> </div> </div> </div> </div> </body> </html>
Output :
Running
MATERIALIZE-TUTORIAL
MATERIALIZE-CSS-CARDS OTHER EXAMPLES
Materialize CSS Basic Cards Example
Materialzie Image Card Example
Materialize Floating Button In Card Example
Materialize Horizontal Card Example
Materialize Card Reveal Example