Author: | justinribeiro |
---|---|
Views Total: | 0 views |
Official Page: | Go to website |
Last Update: | February 14, 2025 |
License: | MIT |
Preview:

Description:
lite-youtube is a tiny web component that provides a performance-optimized way to embed YouTube videos on your website. It significantly improves page load times by deferring the heavy YouTube iframe until user interaction.
The web component serves as the ShadowDom web component version of Paul’s lite-youtube-embed component. It uses a lightweight placeholder image initially, then loads the full YouTube player only when needed. This approach delivers substantial performance improvements.
Features:
- Zero dependencies and pure vanilla JavaScript implementation
- Shadow DOM encapsulation for clean integration
- Responsive 16:9 aspect ratio that maintains layout stability
- Keyboard accessibility with ARIA support
- Localization support for play button labels
- Lazy loading capabilities using Intersection Observer
- Support for both standard videos and YouTube Shorts
- WebP image optimization with JPEG fallback
- Flexible customization through CSS properties
- and more
How to use it:
1. Install and import the lite-youtube web component.
# Yarn $ yarn add @justinribeiro/lite-youtube # NPM $ npm install @justinribeiro/lite-youtube
import '@justinribeiro/lite-youtube';
2. You can also directly import it into your HTML document from a CDN.
<script type="module" src="https://cdn.jsdelivr.net/npm/@justinribeiro/lite-youtube@1/lite-youtube.min.js"></script>
3. Add the <lite-youtube> custom element to your page and set the video ID & playlist (OPTIONAL) as follows:
<lite-youtube videoid="VIDEO ID HERE"></lite-youtube>
<lite-youtube videoid="VIDEO ID HERE" playlistid="PLAYLIST ID"></lite-youtube>
4. Add a fallback link for enhanced accessibility:
<lite-youtube videoid="guJLfqTFfIw"> <a class="lite-youtube-fallback" href="https://www.youtube.com/watch?v=guJLfqTFfIw">Watch on YouTube</a> </lite-youtube>
5. Enable mobile-optimized layout for Youtube Shorts:
<lite-youtube videoid="VIDEO ID" short></lite-youtube>
6. Delay the loading of YouTube video until it’s scrolled into view using the Intersection Observer API:
<lite-youtube videoid="VIDEO ID" autoload> </lite-youtube>
7. More props to customize the component.
videoid
: The YouTube video ID. (Required)playlistid
: The YouTube playlist ID. Requires avideoid
for the thumbnail.videotitle
: The title of the video. Defaults to “Video”.videoplay
: The title of the play button (used for translation). Defaults to “Play”.videoStartAt
: Sets the point at which the video should start, in seconds. Defaults to 0.posterquality
: Sets the thumbnail poster quality. Options are:maxresdefault
,sddefault
,mqdefault
,hqdefault
. Defaults tohqdefault
.posterloading
: Sets theimg
lazy loading attribute for the poster image. Defaults tolazy
.nocookie
: Usesyoutube-nocookie.com
as the iframe embed URI. Defaults tofalse
.autoload
: Uses Intersection Observer to load the iframe when scrolled into view. Defaults tofalse
.short
: Shows a 9:16 YouTube Shorts-style interaction on mobile devices. Defaults tofalse
.params
: Sets YouTube query parameters.