Socket
Socket
Sign inDemoInstall

scrolly-video

Package Overview
Dependencies
2
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    scrolly-video

A component for scroll-based (or other externally controlled) playback.


Version published
Weekly downloads
352
decreased by-26.82%
Maintainers
1
Install size
15.9 MB
Created
Weekly downloads
 

Readme

Source

ScrollyVideo.js

A component for scroll-based (or other externally controlled) playback. See /demos for full example usages.

🚀 Web

Add html container to your page:

<div id="scrolly-video"></div>

Require javascript in your page and create the object (before </body>):

<script src="https://cdn.jsdelivr.net/npm/scrolly-video@latest/dist/scrolly-video.js"></script>
<script type="text/javascript">
  new ScrollyVideo({
    scrollyVideoContainer: "scrolly-video",
    src: "https://scrollyvideo.js.org/goldengate.mp4"
  });
</script>

You can replace @latest with specific version, example @0.0.2.

🔵 React

Install npm module with npm install scrolly-video --save: Import component in your application:

import ScrollyVideo from 'scrolly-video/dist/ScrollyVideo.cjs.jsx';
or
import ScrollyVideo from 'scrolly-video/dist/ScrollyVideo.esm.jsx';

Add the component where you need it:

<ScrollyVideo src="https://scrollyvideo.js.org/goldengate.mp4" />

🟠 Svelte

Install npm module with npm install scrolly-video --save: Import component in your application:

import ScrollyVideo from 'scrolly-video/dist/ScrollyVideo.svelte';

Add the ScrollyVideo component to your application:

<ScrollyVideo src="https://scrollyvideo.js.org/goldengate.mp4" />

🟢 Vue

Install npm module with npm install scrolly-video --save: Import module in your src/App.vue and config:

import ScrollyVideo from 'scrolly-video/dist/ScrollyVideo.vue';

Add html code to your html component:

<ScrollyVideo src="https://scrollyvideo.js.org/goldengate.mp4" />

🧰 Options / Attributes

ParameterDescriptionValuesDefault
srcThe URL of the video (required)URL
scrollyVideoContainerThe DOM element of the container, only used for plain jsString / Element
transitionSpeedSets the maximum playbackRate for this videoNumber8
frameThresholdWhen to stop the video animation, in secondsNumber0.1
coverForces the video to cover in it's containerBooleantrue
stickyWhether the video should have position: stickyBooleantrue
fullWhether the video should take up the entire viewportBooleantrue
trackScrollWhether this object should automatically respond to scrollBooleantrue
useWebCodecsWhether the library should use the webcodecs method, see belowBooleantrue
videoPercentageManually specify the position of the video between 0..1, only used for react, vue, and svelte componentsNumber
debugWhether to log debug informationBooleanfalse

Additionally, to set currentTime manually:

setTargetTimePercent (percentage: number, options: Options): Pass a progress in between of 0 and 1 that specifies the percentage position of the video. Optionally, to customise experience of separate setTargetTimePercent calls you can utilize options:

  • transitionSpeed: number
  • easing: (progress: number) => number

Example: setTargetTimePercent(0.5, { transitionSpeed: 12, easing: d3.easeLinear })

Technical Details and Cross Browser Differences

To make this library perform optimally in all browsers, three different approaches are taken to animating the video.

Method 1: WebCodecs and Canvas

Using the new WebCodecs API we are able to get all frames in the video and have them ready to draw to a canvas. This method is the most performant, but has two drawbacks: first, depending on the device and the size of the video, using the WebCodecs API will take some time to process all the frames, so the animation will not be available immediately upon page load. Secondly, the WebCoedecs API is currently only available on Chrome, and the WebCodecs polyfill does not work for this application.

If WebCodecs is not supported by the browser or has not finished processing all frames, it falls back to method 2:

Method 2: HTML5 Video and playbackRate

This method simply embeds the video with an HTML <video> tag, and it plays the video when the video needs to be animated. To adjust to the scroll speed, this method modulates the playbackRate attribute on the video in order to dynamically mimic a faster or slower scroll speed. This method is extremely smooth when the scroll direction is moving the video forward, but unfortunately does not work in reverse because playbackRate cannot be a negative value.

Thus, if the video needs to be animated backwards, this library falls back to method 3.

Method 3: HTML5 Video and currentTime

This method is the way that scrollytelling videos have traditionally been done, using an HTML <video> tag and skipping directly to frames using currentTime. However, this method requires the video to be encoded at keyframe = 1, which causes the video to be a lot larger or the quality to drop. Unfortunately, this is the only option for scenarios where methods 1 and 2 are not supported, or on mobile safari browsers where somehow this method performs better than method 2. Thus, to achieve maximum performance under all circumstances, it is still recommended to encode videos with keyframe = 1, if possible.

Known Issues

  • On iOS, ScrollyVideo will not work if battery saver mode is on. Unfortunately, there is no workaround for this due to the way that iOS handles videos and battery saving functions.

Created by: Daniel Kao

Keywords

FAQs

Last updated on 31 Mar 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc