Skip to content

olivier3lanc/Scroll-Frames

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Scroll Frames

Logo Scroll Frames

Documentation and examples

Animate sequences of still frames on any DOM element in relation with its position into the viewport.

Scroll Frames is a javascript library intended to be used for cinematic usage on any web page. Scroll Frames binds scroll on still images sequences to craft cinematics on a web page. It applies CSS background image on any HTML tag from a sequence of images according to the position of this HTML tag.

Showcase

La Casa de Papel

D A R K

Examples

Key Features

  • Native Javascript
  • No dependencies
  • Easy to use see usage

Browsers support

Browser Mobile Desktop
Chrome
Safari
Firefox ✅ ¹ ✅ ¹
Opera
Chromium based browsers (Vivaldi, Brave, ...)

(1) Firefox issue: Some troubles when user leaves the tab and comes back.

Installation

Documentation

Include Javascript file scroll-frames.js just before the end body tag </body>. Download scroll-frames.js

<!-- Required -->
<script src="path/to/scroll-frames.js"></script>

Usage

Documentation

Scroll Frames can be applied on any HTML element, the script uses the following CSS properties:

  • background-image
  • background-position
  • background-size
  • background-repeat

Basic usage

Documentation

  • scroll-frames attribute
  • data-url-mask attribute
  • data-json attribute

Two attributes are mandatory to make Scroll Frames work.

  • scroll-frames="YOUR_OWN_UNIQUE_ID" Each instance of Scroll Frames is set with scroll-frames attribute containing a unique value that defines the ID of the instance.
  • data-url-mask or data-json to define the source of still images sequence.
EXAMPLE WITH URL MASK
<div    scroll-frames="matrix"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp">
</div>
EXAMPLE WITH JSON URL
<div    scroll-frames="matrix"
        data-json="https://url.com/path/to/file-containing-urls.json">
</div>

URL mask

Documentation

data-url-mask attribute

If applicable, Scroll Frames allows to use a single string of characters to describe a collection of URL.

<p>Scroll down and up to watch still frames changing</p>
<div    scroll-frames="matrix"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp">
</div>
<style>
    [scroll-frames="matrix"] { 
        margin-top: 80vh;
        margin-bottom: 80vh;
        height: 80vh;
        background-color: #F5F5F5;
    }
    p {
        font-family: monospace;
        font-size: 16px;
        padding: 1em;
        margin: 0;
    } 
</style>

Assuming you have the following sequence of still images with absolute or relative URL :

https://example.org/path/to_file_1.webp
https://example.org/path/to_file_2.webp
https://example.org/path/to_file_3.webp
...
https://example.org/path/to_file_64.webp

or

../img/path/to_file_1.webp
../img/path/to_file_2.webp
../img/path/to_file_3.webp
...
../img/path/to_file_64.webp

Scroll Frames supports the following syntax abstraction for absolute or relative URL :

<div scroll-frames="foo"
     data-url-mask="https://example.org/path/to_file_|1 to 64|.webp"></div>
or
<div scroll-frames="foo"
     data-url-mask="../img/path/to_file_|1 to 64|.webp"></div>

JSON

Documentation

data-json attribute

If URL mask is not possible, Scroll Frames supports JSON format. JSON URL can be either relative to current page or absolute.

<p>Scroll down and up to watch still frames changing</p>
<div    scroll-frames="matrix"
        data-json="../json/matrix_bullet_time_b.json">
</div>
<style>
    [scroll-frames="matrix"] { 
        margin-top: 80vh;
        margin-bottom: 80vh;
        height: 80vh;
        background-color: #F5F5F5;
    }
    p {
        font-family: monospace;
        font-size: 16px;
        padding: 1em;
        margin: 0;
    } 
</style>

JSON file must be set as follows, each still frame URL can be either absolute or relative.

// Example of JSON
[
    { "url": "https://example.com/path/to/first-frame.webp"},
    { "url": "https://example.com/path/to/second-frame.webp"},
    { "url": "https://example.com/path/to/third-frame.webp"},
    //...
    { "url": "https://example.com/path/to/last-frame.webp"}
]

Detector

Documentation

data-detector attribute

By default, Scroll Frames use the specified element scroll-frame="ID" intersection value - or its position into the viewport. If data-detector="ID_OF_ANOTHER_ELEMENT" is set, Scroll Frames uses the intersection value of the specified HTML element.

<p>Frames change in relation with the position of the `hr` element.</p>
<div    scroll-frames="matrix"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp"
        data-detector="the-detector">
</div>
<hr id="the-detector">
<style>
    [scroll-frames="matrix"] { 
        height: 80vh;
        background-color: #F5F5F5;
    }
    hr {
        margin-bottom: 100vh;
    }
    p {
        font-family: monospace;
        font-size: 16px;
        padding: 1em;
        margin: 0;
    } 
</style>

Keyframes

Documentation

data-keyframes attribute

By default, playback head throughout image sequence is linear during scroll but it is possible to customize it with keyframes. No limitation on amount of keyframes.

<p>Still frames start changing when element gets 40% (intersection 0.4) in the viewport and stop when element gets 60% (intersection 0.6) in the viewport.</p>
<p>Scroll down to see.</p>
<div    scroll-frames="matrix"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp"
        data-keyframes="0:0 to 40:0 to 60:100 to 100:100">
</div>
<style>
    [scroll-frames="matrix"] { 
        height: 80vh;
        margin-top: 80vh;
        margin-bottom: 80vh;
        background-color: #F5F5F5;
    }
    p {
        font-family: monospace;
        font-size: 16px;
        padding: 1em;
        margin: 0;
    } 
</style>

Keyframes syntax description:

Syntax Description
[number1]:[number2] Definition of a keypoint.
number1 Percentage of element into the viewport
0% means element is entering the viewport
100% means element leaves the viewport
number2 Position percentage of the playback head of the sequence.
0% is the first frame
100% is the last frame
[space]to[space] Tween link between two keypoints.

Example

<!-- Description -->
<div data-keyframes="[number1]:[number2] to [number3]:[number4] to [number5]:[number6] to [number7]:[number8] (...)"></div>
<!-- Example -->
<div data-keyframes="0:0 to 40:0 to 60:100 to 100:100"></div>
"0:0" when element is entering viewport, playback head is set at 0%
" to " links two keypoints
"40:0" when intersection of the element is 0.4 (40%), playback head is still set at 0%
" to " links two keypoints
"60:100" when intersection of the element is 0.6 (60%), playback head is set at 100%
" to " links two keypoints
"100:100" when intersection of the element is 1 (100%), playback head is set at 100%

Fit and adjust

Documentation

  • data-background-position attribute
  • data-background-repeat attribute
  • data-background-size attribute

This setting adjusts position of still frames into the element. Scroll Frames changes still frames as CSS background-image. You can customize applicable CSS properties by using the following dedidated data attributes:

CSS Property Default value Data attribute
background-position center data-background-position
background-repeat no-repeat data-background-repeat
background-size contain data-background-size
<p>Default settings</p>
<div    scroll-frames="matrix1"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp">
</div>

<p>Background size attribute set to cover</p>
<div    scroll-frames="matrix5"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp"
        data-background-size="cover">
</div>

<p>Background repeat attribute set to repeat</p>
<div    scroll-frames="matrix2"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp"
        data-background-repeat="repeat">
</div>

<p>Background position attribute set to 0%</p>
<div    scroll-frames="matrix3"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp"
        data-background-position="0%">
</div>

<p>Background position attribute set to 100%</p>
<div    scroll-frames="matrix4"
        data-url-mask="https://olivier3lanc.github.io/cinematics-resources/matrix_bullet_time_b/matrix_bullet_time_b_|1 to 197|.webp"
        data-background-position="100%">
</div>
<style>
    [scroll-frames*="matrix"] { 
        height: 80vh;
        margin-bottom: 40vh;
        background-color: #F5F5F5;
    }
    p {
        font-family: monospace;
        font-size: 16px;
        padding: 1em;
        margin: 0;
    } 
</style>

Methods

Scroll Frames comes with the following methods.

  • scrollFrames.getIntersection(element) Returns the intersection value of the specified element.
  • scrollFrames.update() Start Scroll Frames or update instances if DOM has changed.

Image format support

Documentation

Scroll Frames supports browser supported images formats including modern ones like WebP.

Scroll Frames is based on CSS and Javascript, thus, it supports any image format the browser supports. Even if Scroll Frames is able to have multiple instance on a single page, user must be aware of the following notes:

  • Vector images frames are supported
  • For raster image format, it is highly recommended to use WebP image format
  • Page performances depend on frames sizes and compression.
  • Higher amounts of frames - over 200 - decreases performance, the more on low-end devices
  • Consider not exceeding an image sequence over 2MB for a single animation
Raster file  Size Support (% of users)1
PNG (Source image w/ lossless compression) 1 331 kB 99.99%
JPEG (approx. w/ quality set to 30) 29.6 kB 99.99%
WebP (approx. w/ quality set to 30) 21.6 kB 95%
AVIF (approx. w/ quality set to 30) 14.6 kB 69%

(1) Source https://caniuse.com march 2022

Illustrations below shows renders in different image formats from https://squoosh.app

JPEG | Widely supported JPEG

WebP | Recommened format, good support learn more WebP

AVIF | The most powerful image compression but low brower support learn more AVIF

Performances

Documentation

Scroll Frames applies still images on DOM elements, so bandwidth and performances are affected in relation with:

  • Image resolution: Higher still frames resolutions (higher width and higher height) uses more bandwidth and device resources. Consider resizing properly your images sequences to your needs.
  • Image compression: Low/lossless compression of still frames uses more bandwidth. Consider compressing properly your images sequences in modern format like WebP to save bandwidth.
  • Image format: PNG, low compression JPEG files allow get high quality rendering but use a large amount of bandwidth, it is strongly recommended to use WebP format or highly compressed JPEG.
  • Amount of images: The more Scroll Frames instances have still frames, the more bandwidth and device resources are required.
  • Amount of instances: The more you set Scroll Frames instances on a page, the more bandwidth and device resources are required.

Credits

License

MIT License

Copyright 2022 Olivier 3lanc

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Animate sequences of still frames on any DOM element in relation with its position into the viewport. https://olivier3lanc.github.io/Scroll-Frames/

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published