Copybara bot | be50d49 | 2023-11-30 00:16:42 +0100 | [diff] [blame] | 1 | <!doctype html> |
| 2 | <html lang="en"> |
| 3 | <head> |
| 4 | <meta charset="utf-8"> |
| 5 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | <meta name="description" content="A front-end template that helps you build fast, modern mobile web apps."> |
| 7 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 8 | <title>tooltip test</title> |
| 9 | |
| 10 | <!-- Fonts --> |
| 11 | <link href='https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en' rel='stylesheet' type='text/css'> |
| 12 | <link href="https://fonts.googleapis.com/icon?family=Material+Icons" |
| 13 | rel="stylesheet"> |
| 14 | |
| 15 | <!-- Page styles --> |
| 16 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/prism/0.0.1/prism.min.css"> |
| 17 | <link rel="stylesheet" href="../../material.min.css"> |
| 18 | <link rel="stylesheet" href="../../components/demos.css"> |
| 19 | <script src="../../material.min.js"></script> |
| 20 | |
| 21 | |
| 22 | <style> |
| 23 | |
| 24 | </style> |
| 25 | |
| 26 | </head> |
| 27 | <body> |
| 28 | |
| 29 | <div style="padding-top: 24px;"> |
| 30 | |
| 31 | |
| 32 | <!-- Large Tooltip --> |
| 33 | <div id="tt2" class="icon material-icons">print</div> |
| 34 | <div class="mdl-tooltip mdl-tooltip--large" for="tt2"> |
| 35 | Print |
| 36 | </div> |
| 37 | |
| 38 | <!-- Multiline Tooltip --> |
| 39 | <div id="tt4" class="icon material-icons">share</div> |
| 40 | <div class="mdl-tooltip" for="tt4"> |
| 41 | Share your content<br>via social media |
| 42 | </div> |
| 43 | |
| 44 | <!-- Rich Tooltip --> |
| 45 | <div id="tt3" class="icon material-icons">cloud_upload</div> |
| 46 | <div class="mdl-tooltip" data-mdl-for="tt3"> |
| 47 | Upload <strong>file.zip</strong> |
| 48 | </div> |
| 49 | |
| 50 | <!-- Simple Tooltip --> |
| 51 | <div id="tt1" class="icon material-icons">add</div> |
| 52 | <div class="mdl-tooltip" data-mdl-for="tt1"> |
| 53 | Follow |
| 54 | </div> |
| 55 | |
| 56 | |
| 57 | </div> |
| 58 | <!-- Built with love using Material Design Lite --> |
| 59 | |
| 60 | |
| 61 | <script> |
| 62 | |
| 63 | </script> |
| 64 | </body> |
| 65 | </html> |