import { Meta } from '@storybook/blocks'; import * as ScrollyVideoStories from './ScrollyVideo.stories.svelte'; # ScrollyVideo The `ScrollyVideo` component creates interactive video experiences that respond to user scrolling. It is built on top of [ScrollyVideo.js](https://scrollyvideo.js.org/) and is designed to work seamlessly with Svelte. ## Basic demo To use the `ScrollyVideo` component, import it and provide the video source. Set the `height` prop to any valid CSS height value such as `1200px`, `50vh`, or `500svh` to set the scroll height. [Demo](?path=/story/components-graphics-scrollyvideo--demo) ```svelte ``` ## Optimising videos When using the `ScrollyVideo` component, minimise the video file size and ensure that the video is encoded in a format that is widely supported across browsers. Videos encoded at higher frames per second (FPS) are bound to crash on phone devices, so 24 FPS is recommended. > 💡**TIP:** Set the `showDebugInfo` prop to `true` to see video encoding information To optimise your video for the web, you can use `ffmpeg` to convert the video to a suitable format. Here is an example terminal command that converts a video to H.264 format with a resolution of 720p and a frame rate of 24 FPS: ```bash npx ffmpeg -y -i .mp4 -c:v libx264 -movflags faststart -crf 20 -r 24 -vf scale=720:-1 -profile:v baseline -preset veryslow -level:v 4.1 -color_primaries 1 -color_trc 1 -colorspace 1 -an .mp4 ``` Adjust the `-crf` value to control the quality. Lower `-crf` value means higher quality, with 20 being a generally good balance. See [Testing Media Capabilities](https://cconcolato.github.io/media-mime-support/mediacapabilities.html) for more. ## Responsive videos To show different videos based on the screen width, use the `ScrollyVideo` component with conditional logic that uses a different video source depending on the [window width](https://svelte.dev/docs/svelte/svelte-window). [Demo](?path=/story/components-graphics-scrollyvideo--responsive-videos) ```svelte {#if width < 600} {:else if width < 1200} {:else} {/if} ``` ## Embeds Scrollytelling does not work in iframes. If the prop `embedded` is set to `true`, the video will be rendered as a regular video instead. By default, the video element has the properties `loop`, `muted`, and `playsinline` and `controls`. To customise the video properties, use the `embeddedProps` prop to render the embed video. To use a different video for the embedded version, pass its source to the `embeddedSrc` prop. If `embeddedSrc` is not provided, the component will use the `src` prop. > 💡**TIP:** One way to recreate the ScrollyVideo experience for embeds is to record the desktop screen with [Scroll Capture](https://chromewebstore.google.com/detail/scroll-capture/egmhoeaacclmanaimofoooiamhpkimkk?hl=en) while scrollying through the video and use that video instead. [Demo](?path=/story/components-graphics-scrollyvideo--embed) ```svelte ``` ## Autoplay The `autoplay` option combines the autoplay and scrollytelling experience. If set to `true`, the video will start playing automatically when the component is mounted, but switch to scrollytelling when the user starts scrolling. The scroll height is calculated based on how much of the video remains, which means that if the user lets the video autoplay to near the end, the user would only have to scroll through a small height to get to the end. If the user lets the video autoplay to the end, there will be no scrolling effect. [Demo](?path=/story/components-graphics-scrollyvideo--autoplay) ```svelte ``` ## Time-based text foregrounds with ArchieML The `ScrollyVideo` component can also be used to display text as foregrounds at specific times in the video. To do so, use the `text` prop in `ScrollyVideoForeground` component. [Demo](?path=/story/components-graphics-scrollyvideo--archie-ml-foregrounds) With the graphics kit, you'll likely get your text and prop values from an ArchieML doc... ```yaml # ArchieML doc [blocks] type: scrolly-video id: alps-scrolly src: videos/alps.mp4 height: 800svh # Array of foregrounds [.foregrounds] startTime: 3 # When in the video to start showing the foreground endTime: 7 # When to stop showing the foreground width: normal # text container width position: bottom center # Position of the text. Optional; defaults to 'center center'. Must be a combination of `top/bottom/center center/left/right` backgroundColour: rgba(0, 0, 0, 0.8) # Optional; defaults to white text: #### The Alps The Alps stretch across eight countries: France, Switzerland, Italy, Monaco, Liechtenstein, Austria, Germany, and Slovenia, covering about 1,200 kilometers (750 miles). :end startTime: 9 endTime: 12 width: normal position: bottom center backgroundColour: rgba(0, 0, 0, 0.8) text: Mont Blanc, standing at 4,809 meters (15,777 feet), is the highest peak in the Alps and Western Europe, though there's ongoing debate between France and Italy about exactly where the summit lies. :end startTime: 16 endTime: 20 width: normal position: bottom center backgroundColour: rgba(0, 0, 0, 0.8) text: #### History The Alps were formed around **65 million years** ago when the African and Eurasian tectonic plates collided, pushing the land upward.Over 14 million people live in the Alpine region, with tourism supporting approximately 120 million visitors annually. :end [] [] ``` ... which you'll parse out of a ArchieML block object before passing to the `ScrollyVideo` and `ScrollyVideoForeground` components. ```svelte {#each content.blocks as block} {#if block.type == 'scrolly-video'} {#each block.foregrounds as foreground} {/each} {/if} {/each} ``` ## Time-based component foregrounds with ArchieML The `ScrollyVideo` component can also be used to display components, such as `Headline` or ai2svelte files, as foregrounds at specific times in the video. To do so, use the `Foreground` prop in `ScrollyVideoForeground` component. > **IMPORTANT❗**: When layering ai2svelte files over a video, the aspect ratio of the ai2svelte graphics should match that of the video. If the ai2svelte graphic is responsive and has, for example, small, medium and large verisons — which is generally the case — make sure to also render small, medium and large versions of the video at the appropriate screen sizes. See [Responsive videos](#responsive-videos) for more details. [Demo](?path=/story/components-graphics-scrollyvideo--component-archie-ml-foregrounds) With the graphics kit, you'll likely get your text and prop values from an ArchieML doc... ```yaml # ArchieML doc # Headline hed: Wind and waves [authors] * Jane Doe [] publishTime: 2020-01-01T00:00:00Z startTime: 0 # When in the video to start showing the headline endTime: 0.3 # When to stop showing the headline [blocks] type: scrolly-video id: my-scrolly-video height: 800svh # Adjust prop names as needed srcSm: videos/my-video-sm.mp4 srcMd: videos/my-video-md.mp4 srcLg: videos/my-video-lg.mp4 # Array of foregrounds [.foregrounds] startTime: 0.3 # When in the video to start showing the foreground endTime: 2.2 # When to stop showing the foreground width: fluid # foreground container width Foreground: Foreground1 # Name of the ai2svelte component to render startTime: 2.2 endTime: 3.2 width: fluid Foreground: Foreground2 startTime: 3.2 endTime: 4.5 width: fluid Foreground: Foreground3 startTime: 6.5 endTime: 8 width: fluid Foreground: Foreground4 [] [] ``` ... which you'll parse out of a ArchieML block object before passing to the `ScrollyVideo` and `ScrollyVideoForeground` components. ```svelte {#each content.blocks as block} {#if block.type == 'scrolly-video'} {#snippet ScrollVideo(height: string, src: string)} {#each block.foregrounds as foreground} {/each} {/snippet} {#if width < 600} {@render ScrollVideo({block.height}, `${assets}/${block.srcSm}`)} {:else if width < 1200} {@render ScrollVideo({block.height}, `${assets}/${block.srcMd}`)} {:else} {@render ScrollVideo({block.height}, `${assets}/${block.srcLg}`)} {/if} {/each} ``` ## Using with `ScrollerBase` The `ScrollyVideo` component can be used inside the [ScrollerBase](?path=/story/components-graphics-scrollerbase--docs) component to add foreground content. This allows for foreground that scrolls up and down over the video, instead of fading in and out at specific times. > **Note**: To use `ScrollyVideo` with `ScrollerBase`, set `trackScroll` to `false` and pass the bindable prop `progress` from `ScrollerBase` as `videoPercentage` to `ScrollyVideo`. [Demo](?path=/story/components-graphics-scrollyvideo--scroller-base) ```svelte {#snippet backgroundSnippet()} {/snippet} {#snippet foregroundSnippet()}

Step 1

Step 2

Step 3

{/snippet}
``` ## Advanced usecases For advanced use cases such as looping a particular section of the video, or jumping to a specific time in the video, you can bind `scrollyVideo` prop and take benefits of methods such as `setVideoPercentage` or bindable methods such as `onReady` and `onChange`. This allows for fine-grained control over the video playback and interaction with the scroll position. ```js scrollyVideo.setVideoPercentage(0.5, { jump: true, }); ``` This will seek the video to 50% progress at a single instant. Setting `jump` to `false` will make smooth transition to the provided progress value. [Demo](?path=/story/components-graphics-scrollyvideo--advanced) ```svelte {#snippet backgroundSnippet()}

ScrollerBase progress: {progress.toPrecision(2)}

{/snippet} {#snippet foregroundSnippet()}

Step 1

Step 2

Step 3

{/snippet}
```