পৃষ্ঠাসমূহ

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

Tuesday, March 7, 2017

Materialize - Cards

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

S.N.Class Name & Description
1card
Identifies div element as an Materialize card container. Required on "outer" div.
2card-content
Identifies div as a card content container and is required on "inner" div.
3card-title
Identifies div as a card title container and is required on "inner" title div.
4card-action
Identifies div as a card actions container and assigns appropriate text characteristics to actions text and is required on "inner" actions div; content goes directly inside the div with no intervening containers.
5card-image
Identifies div as a card image container and is required on "inner" div.
6card-reveal
Identifies div as a revealed text container.
7activator
Identifies div as a revealed text container and image as to be revealer. Used to show contextual information related to image.
8card-panel
Identifies div as a simple card with shadows and padding.
9card-small
Identifies div as a small sized card. Height: 300px;
10card-medium
Identifies div as a medium sized card. Height: 400px;
11card-large
Identifies div as a large sized card. Height: 500px;
The following example showcases the use of card classes to showcase various types of cards.
materialize_cards.htm
<!DOCTYPE html>
<html>
   <head>
      <title>The Materialize Cards 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"> 
      <div class="row">
         <div class="col s12 m6">
            <div class="card blue-grey lighten-4">
               <div class="card-content">
                  <span class="card-title"><h3>Learn HTML5</h3></span>
                  <p>HTML5 is the next major revision of the HTML standard superseding HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for structuring and presenting content on the World Wide Web.</p>
               </div>
               <div class="card-action">
                  <button class="btn waves-effect waves-light blue-grey"><i class="material-icons">share</i></button>
                  <a class="right blue-grey-text" href="http://www.tutorialspoint.com">www.tutorialspoint.com</a>
               </div>
            </div>
         </div>
    <div class="col s12 m6">
            <div class="card blue-grey lighten-4">
               <div class="card-image">
                 <img src="html5-mini-logo.jpg">                
               </div>
               <div class="card-content">                  
                  <p>HTML5 is the next major revision of the HTML standard superseding HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for structuring and presenting content on the World Wide Web.</p>
               </div>
               <div class="card-action">
                  <button class="btn waves-effect waves-light blue-grey"><i class="material-icons">share</i></button>
                  <a class="right blue-grey-text" href="http://www.tutorialspoint.com">www.tutorialspoint.com</a>
               </div>
            </div>
         </div>
      </div>     
   <div class="row">
    <div class="col s12 m6">
            <div class="card blue-grey lighten-4">
               <div class="card-image waves-effect waves-block waves-light">
                 <img class="activator" src="html5-mini-logo.jpg">                
               </div>
               <div class="card-content activator">                  
                  <p>Click the image to reveal more information.</p>
               </div>
               <div class="card-reveal">
                  <span class="card-title grey-text text-darken-4">HTML5<i class="material-icons right">close</i></span>
                  <p>HTML5 is the next major revision of the HTML standard superseding HTML 4.01, XHTML 1.0, and XHTML 1.1. HTML5 is a standard for structuring and presenting content on the World Wide Web.</p>
               </div>
               <div class="card-action">
                  <button class="btn waves-effect waves-light blue-grey"><i class="material-icons">share</i></button>
                  <a class="right blue-grey-text" href="http://www.tutorialspoint.com">www.tutorialspoint.com</a>
               </div>
            </div>
         </div>
      </div>
      <div class="row">
         <div class="col s12 m3">
            <div class="card-panel teal">
               <span class="white-text">Simple Card</span>
            </div>
         </div>
    <div class="col s12 m3">
            <div class="card small teal">
               <span class="white-text">Small Card</span>
            </div>
         </div>
    <div class="col s12 m3">
            <div class="card medium teal">
               <span class="white-text">Medium Card</span>
            </div>
         </div>
    <div class="col s12 m3">
            <div class="card large teal">
               <span class="white-text">Large Card</span>
            </div>
         </div>
      </div>        
   </body>   
</html>

Result

Verify the result.

No comments:

Post a Comment