• Jump To … +
    ./demo/modules/canvas-minimap.js ./demo/modules/canvas-scene-editor.js ./demo/modules/demo-m006-c1.js ./demo/modules/demo-m006-c2.js ./demo/modules/demo-m006-c3.js ./demo/modules/demo-m006-c4.js ./demo/modules/demo-m006-utils.js ./demo/modules/dom-entity-editor.js ./demo/modules/entity-copy-paste.js ./demo/modules/entity-manipulation-gui.js ./demo/modules/entity-navigation.js ./demo/modules/entity-ring-builder.js ./demo/modules/london-crime-lines.js ./demo/modules/london-crime-stacked-bars.js ./demo/modules/lottie-loader.js ./demo/modules/simple-chart-frame.js ./demo/modules/simple-graph-lines.js ./demo/modules/simple-graph-stacked-bars.js ./demo/modules/wikipedia-views-spiral-chart.js ./demo/snippets/animated-highlight-gradient-text-snippet.js ./demo/snippets/animated-hover-gradient-snippet.js ./demo/snippets/animated-word-gradient-snippet.js ./demo/snippets/before-after-slider-infographic.js ./demo/snippets/bubbles-text-snippet.js ./demo/snippets/green-box-snippet.js ./demo/snippets/jazzy-button-snippet.js ./demo/snippets/page-performance-snippet-test.js ./demo/snippets/page-performance-snippet.js ./demo/snippets/pan-image-snippet.js ./demo/snippets/placeholder-effect-snippet.js ./demo/snippets/ripple-effect-snippet.js ./demo/snippets/risograph-text-gradient-snippet.js ./demo/snippets/spotlight-text-snippet-test.js ./demo/snippets/spotlight-text-snippet.js ./demo/snippets/swirling-stripes-text-snippet.js ./demo/snippets/text-snippet-helper.js ./demo/snippets/word-highlighter-snippet.js ./demo/snippets/worley-text-gradient-snippet.js
  • §

    Demo Modules 006

    Animation observer; Scrollytelling: First canvas

    Related files:

    • Scrollytelling - main demo
    import { loader, reducedMotionFunctions } from './demo-m006-utils.js';
    
    export default function (items) {
  • §

    Proceed checks

        let { canvas, namespace, scrawl } = items;
    
        if (!(canvas && namespace && scrawl)) return {
            animation: null,
            kill: () => {},
        }
  • §

    Boilerplate

        const name = item => `${namespace}-${item}`;
    
        const assets = loader(canvas, scrawl);
        console.log(namespace, assets);
  • §

    Scene

        canvas.set({
            label: 'An animated canvas showing three text snippets at the top, center and bottom of the canvas. Each text describes the canvas element\'s current position (from 0% top to 100% bottom) in the browser\' viewport. The texts update as the user scrolls through the page.', 
        }).setAsCurrentCanvas();
    
        scrawl.makeGradient({
            name: name('background-gradient'),
            endY: '100%',
            colors: [
                [0, 'slategray'],
                [999, 'darkslategray'],
            ],
        });
    
        scrawl.makeBlock({
            name: name('background'),
            dimensions: ['100%', '100%'],
            fillStyle: name('background-gradient'),
        });
    
        const top = scrawl.makePhrase({
            name: name('top'),
            start: ['center', '5%'],
            handle: ['center', 'center'],
            font: '1em Arial, sans-serif',
            lineHeight: 1,
            fillStyle: 'white',
        });
    
        const middle = top.clone({
            name: name('middle'),
            startY: 'center',
        });
    
        const bottom = top.clone({
            name: name('bottom'),
            startY: '95%',
        });
    
    
        const staticGroup = scrawl.makeGroup({
            name: name('static-group'),
            host: canvas.get('baseName'),
        });
    
        scrawl.makePicture({
            name: name('placeholder'),
            group: staticGroup,
            dimensions: ['100%', '100%'],
            copyDimensions: ['100%', '100%'],
            asset: assets.placeholder,
        });
  • §

    Animation

        const commence = () => {
    
            const { inViewportTop, inViewportCenter, inViewportBase } = canvas.here;
    
            top.set({
                text: `Canvas top: ${(inViewportTop * 100).toFixed(2)}%`,
            });
    
            middle.set({
                text: `Canvas center: ${(inViewportCenter * 100).toFixed(2)}%`,
            });
    
            bottom.set({
                text: `Canvas bottom: ${(inViewportBase * 100).toFixed(2)}%`,
            });
        };
    
        const animation = scrawl.makeRender({
            name: name('animation'),
            target: canvas,
            observer: true,
        });
  • §

    Accessibility - reduced-motion preference

        const reducedMotion = reducedMotionFunctions({
            fixed: staticGroup,
            animated: canvas.get('baseGroup'),
            commence,
            animation,
        });
    
        canvas.set({ ...reducedMotion });
  • §

    Return object

        return {
            animation,
            kill: () => scrawl.library.purge(namespace),
        };
    };