materialize
  1. materialize-media

Materialize Media

Materialize provides different classes and components to handle multimedia content.

Syntax

To add multimedia to a Materialize webpage, you can use predefined classes and components that include:

  • responsive-video: Adjusts video size to fit any screen size using the iframe element.
  • materialboxed: Enables images to be zoomed in, providing a better view of details.
  • carousel: Allows for the creation of a rotating slideshow of images.

Use

Materialize Media provides a user-friendly way to incorporate media into your website pages. These multimedia components offer an interactive and visually appealing experience for the user.

Importance

The Media components of Materialize improve user engagement, making the site function more effectively across different devices of screen size and user preferences.

Example

<div class="row">
  <div class="col s12">
    <h5>Responsive Video</h5>
    <div class="video-container">
      <iframe width="560" height="315" src="https://www.youtube.com/embed/qOtRAC-IRZY" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
    </div>
  </div>
</div>

<div class="row">
  <div class="col s12">
    <h5>Material Boxed</h5>
    <img src="https://materializecss.com/images/sample-1.jpg" class="materialboxed" width="650">
  </div>
</div>

<div class="row">
  <div class="col s12">
    <h5>Carousel</h5>
    <div class="carousel carousel-slider">
      <a class="carousel-item" href="#one!"><img src="https://materializecss.com/images/sample-1.jpg"></a>
      <a class="carousel-item" href="#two!"><img src="https://materializecss.com/images/sample-1.jpg"></a>
      <a class="carousel-item" href="#three!"><img src="https://materializecss.com/images/sample-1.jpg"></a>
      <a class="carousel-item" href="#four!"><img src="https://materializecss.com/images/sample-1.jpg"></a>
    </div>
  </div>
</div>

Summary

Materialize Media offers a variety of components and classes designed to help you integrate multimedia content that will enhance the user experience of your website. With responsive videos, material boxed images, and a carousel, the Materialize Media classes and components provide a range of multimedia features to choose from.

Published on: