npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cleverage/responsive-video-background

v1.2.0

Published

A JavaScript library to help build components with responsive video and/or image background

Downloads

349

Readme

<responsive-video-background /> Web Component

GitHub release (latest by date) npm npm GitHub Built by Clever Age

A Web Component that helps responsively using a video as the background of a content block. The video usage can be restricted to large viewports, with an image fallback on thinner ones.

The dimensions of the Web Component are determined by the content inside it. You can style the Web Component with CSS, but it is better to style the content itself, as there could be a layout shift with the component's styles because JavaScript has to run to really make it available.

Accessibility: If there's a video, it will play only if if the user didn't "notify the system that they prefer an interface that removes or replaces the types of motion-based animation that trigger discomfort for those with vestibular motion disorders" thanks to the CSS prefers-reduced-motion media query.

Examples

See on https://cleverage.github.io/responsive-video-background/

Installation

Use from a CDN

The quickest way to get started and try the Web Component is to load <responsive-video-background /> as a module script tag from a CDN:

<script type="module" src="https://unpkg.com/@cleverage/responsive-video-background@^1"></script>

Don't forget the type="module" attribute, this is own JavaScript modules are now loaded in HTML pages.

This is own it is used in this demo in CodePen that you can fork to play with it.

Better for performance: add a local version to your project

<responsive-video-background /> is also available on npm, so you can add it to your project with this shell command:

npm install @cleverage/responsive-video-background

You can then import it in your own project:

import '@cleverage/responsive-video-background';

Your build tools will then be able to optimize where, when and how to load it.

Usage

Syntax

The Web Component's configuration is done with attributes:

<style>
/* …inline CSS styles for the component, to prevent layout shifts */
</style>
<responsive-video-background
    class="…"
    webm="video.webm"
    mp4="video.mp4"
    poster="video-poster.jpg"
    fallback="not-responsive-image.jpg"
    srcset="image-320.jpg 320w, image-640.jpg 640w, image-1024.jpg 1024w"
    sizes="calc(100vh - 2rem)"
    breakpoint="48rem">
  Some content…
</responsive-video-background>

API

| Attribute | Description | Example | | --------- | ----------- | ------- | | webm | URL to the WebM version of the video | https://cleverage.github.io/responsive-video-background/demo/Big_Buck_Bunny_720_10s_1MB.webm | | mp4 | URL to the MP4 version of the video | https://cleverage.github.io/responsive-video-background/Big_Buck_Bunny_720_10s_1MB.mp4 | | poster | URL to the video's poster image. This should be the first frame of the video, and an highly optimized progressive JPEG | https://cleverage.github.io/responsive-video-background/Big_Buck_Bunny_720.jpg | | fallback | URL to the fallback image, for the src attribute | https://example.com/path/to/image-fallback.jpg | | srcset | Value of the srcset attribute for the responsive image | https://example.com/path/to/image-320px.jpg 320w, https://example.com/path/to/image-850px.jpg 850w, https://example.com/path/to/image-1600px.jpg 1600w | | sizes | value of the sizes attribute for the responsive image | calc(100vh - 2rem) | | breakpoint | Viewport width breakpoint, if there should be an image on thin viewports and a video on larger viewports | 48rem |

If the srcset option is set, these other ones are mandatory:

  • webm and/or mp4
  • fallback
  • sizes

If the breakpoint option is set, these other ones are mandatory:

  • webm and/or mp4
  • fallback
  • srcset
  • sizes

FAQ

| Question | Answer | | -------- | ------ | | Why isn't the image switching to a video when the viewport becomes larger? | This is not a bug. The idea is to prevent a strong visual change when the user changes the viewport, either by resizing the browser, or rotating the device. |