পৃষ্ঠাসমূহ

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 - Badges

An MDL badge component is a onscreen notification which can be a number or icon. It is generally used to emphasize the number of items.
The MDL provides various CSS classes to apply various predefined visual and behavioral enhancements to the badges. The below table mentions the available classes and their effects.

S.N.Class Name & Description
1mdl-badge
Identifies element as an MDL badge component. Required for span or link element.
2mdl-badge--no-background
Applies open-circle effect to badge and is optional.
3mdl-badge--overlap
Makes the badge overlap with its container and is optional.
4data-badge="value"
Assigns a string value to badge used as attribute; required on span or link.

Example

The following example showcases the use of mdl-badge class to add notifications to span and link elements.
Here following MDL classes are used.
  1. mdl-badge - Identifies element as an MDL badge component.
  2. data-badge -Assigns a string value to badge. Icons can be assigned to it using HTML symbols.
mdl_badges.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">
      <style>
         body {
            padding: 20px;
            background: #fafafa;
            position: relative;
         }
      </style>
   </head>
   <body>
      <span class="material-icons mdl-badge" data-badge="1">account_box</span>    
      <span class="material-icons mdl-badge" data-badge="★">account_box</span> 
      <span class="mdl-badge" data-badge="4">Unread Messages</span>
      <span class="mdl-badge" data-badge="⚑">Rating</span>
      <a href="#" class="mdl-badge" data-badge="5">Inbox</a>
   </body>
</html>

Result

Verify the result.

No comments:

Post a Comment