পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Monday, March 6, 2017

Material Design Lite - Tooltips

The MDL provides various CSS classes to apply various predefined visual and behavioral enhancements to the display various types of tooltips. The below table mentions the available classes and their effects.

S.N.Class Name & Description
1mdl-tooltip
Identifies container as an MDL tooltip and is required on tooltip container element.
2mdl-tooltip--large
Sets large-font effect and is optional; goes on tooltip container element

Example

The following example showcases the use of mdl-tooltip classes to show different types of tooltips.
mdl_tooltips.htm
<html>
<head>
   <script src="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.min.js"></script>
   <link rel="stylesheet" href="https://storage.googleapis.com/code.getmdl.io/1.0.6/material.indigo-pink.min.css">
   <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">   
   <script langauage="javascript">
      function showMessage(value){
         document.getElementById("message").innerHTML = value;
      }   
   </script>
</head>
<body>
   <table>
      <tr><td>Simple Tooltip</td><td>Large Tooltip</td></tr>
      <tr><td><div id="tooltip1" class="icon material-icons">add</div>
            <div class="mdl-tooltip" for="tooltip1">Follow</div>
      </td>
         <td><div id="tooltip2" class="icon material-icons">print</div>
            <div class="mdl-tooltip mdl-tooltip--large" for="tooltip2">Print</div>
      </td>
      </tr>
      <tr><td>Rich Tooltip</td><td>Multiline Tooltip</td></tr>
      <tr><td><div id="tooltip3" class="icon material-icons">cloud_upload</div>
            <div class="mdl-tooltip" for="tooltip3">Upload <i>zip files</i></div>
      </td>
         <td><div id="tooltip4" class="icon material-icons">share</div>
            <div class="mdl-tooltip" for="tooltip4">Share your content<br>using social media</div>
      </td>
      </tr>      
   </table>   
</body>
</html>

Result

Verify the result.

No comments:

Post a Comment