semantic-ui
  1. semantic-ui-embed

Semantic UI Embed

The Semantic UI Embed component provides an easy way to embed content like videos, images, and other media types. It allows the usage of various sources like YouTube, Vimeo, and even self-hosted videos. It has a simple and intuitive syntax and can be customized easily.

Syntax

To use the Semantic UI Embed component, start by including the necessary CSS and JS files in your HTML file:

<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"></script>

Next, create an HTML element with a data-embed attribute and a source:

<div class="ui embed" data-embed="youtube" data-id="VIDEO_ID"></div>

Replace "VIDEO_ID" with the ID of the video you want to embed. You can also customize the dimensions of the embedded content by adding the width and height attributes to the HTML element.

Use

Semantic UI Embed can be used for various purposes like embedding videos, images, maps, and other types of media. It can be used for blogs, news websites, or e-commerce websites.

Importance

The Semantic UI Embed component provides a reliable way to embed media without worrying about cross-browser compatibility. It simplifies the process of embedding content on websites and can be customized to suit different needs.

Example

Here's an example of how to use Semantic UI Embed to embed a YouTube video:

<div class="ui embed" data-embed="youtube" data-id="ZKpPXbJ5xJc" data-placeholder="/images/youtube-placeholder.png"></div>

In this example, a YouTube video is being embedded with a custom placeholder image.

Summary

The Semantic UI Embed component is a simple and intuitive way to embed media on websites. It offers easy customization and supports various media types. The component saves time and effort in embedding content and ensures cross-browser compatibility.

Published on: