Slide 48
Slide 48 text
Compositor Worklet
window.compositorWorklet.import('compworklet.js')
.then(function() {
var animator = new CompositorAnimator('social-header');
animator.postMessage([
new CompositorProxy($('window'), ['scrollTop']),
new CompositorProxy($('.avatar'), ['transform']),
new CompositorProxy($('.bar'), ['transform', 'opacity'])
]);
});
Experimental