-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement parallax effect extension.
- Loading branch information
Carlos Vializ
committed
Feb 25, 2017
1 parent
abc2ec2
commit 0eabb16
Showing
5 changed files
with
484 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
/** | ||
* Copyright 2017 The AMP HTML Authors. All Rights Reserved. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS-IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import {Observable} from '../../../src/observable'; | ||
import {getService} from '../../../src/service'; | ||
import {isExperimentOn} from '../../../src/experiments'; | ||
import {onDocumentReady} from '../../../src/document-ready'; | ||
import {setStyles} from '../../../src/style'; | ||
import {toArray} from '../../../src/types'; | ||
import {user} from '../../../src/log'; | ||
import {viewportForDoc} from '../../../src/viewport'; | ||
import {vsyncFor} from '../../../src/vsync'; | ||
|
||
const ATTR = 'amp-fx-parallax'; | ||
const EXPERIMENT = ATTR; | ||
|
||
/** | ||
* Installs parallax handlers, tracks the previous scroll position and | ||
* implements post-parallax-update scroll hooks. | ||
*/ | ||
export class ParallaxService { | ||
/** | ||
* @param {!Window} win | ||
*/ | ||
constructor(win) { | ||
/** @private @const {!Window} */ | ||
this.win_ = win; | ||
|
||
/** @private @const {!Observable} */ | ||
this.parallaxObservable_ = new Observable(); | ||
|
||
/** @private {number} */ | ||
this.previousScroll_ = 0; | ||
} | ||
|
||
/** | ||
* Install handlers after the document has loaded. | ||
*/ | ||
start_() { | ||
const win = this.win_; | ||
onDocumentReady(win.document, () => { | ||
installParallaxHandlers(win); | ||
}); | ||
} | ||
|
||
/** | ||
* Get the previous scroll value. | ||
* @return {number} | ||
*/ | ||
getPreviousScroll() { | ||
return this.previousScroll_; | ||
} | ||
|
||
/** | ||
* Set the previous scroll value. | ||
* @param {number} scroll | ||
*/ | ||
setPreviousScroll(scroll) { | ||
this.previousScroll_ = scroll; | ||
} | ||
|
||
/** | ||
* Add listeners to parallax scroll events. | ||
* @param {!function()} cb | ||
*/ | ||
addScrollListener(cb) { | ||
this.parallaxObservable_.add(cb); | ||
} | ||
|
||
/** | ||
* Remove listeners from parallax scroll events. | ||
* @param {!function()} cb | ||
*/ | ||
removeScrollListener(cb) { | ||
this.parallaxObservable_.remove(cb); | ||
} | ||
|
||
/** | ||
* Alert listeners that a scroll has occurred. | ||
* @param {number} scrollTop | ||
*/ | ||
fire(scrollTop) { | ||
this.parallaxObservable_.fire(scrollTop); | ||
} | ||
} | ||
|
||
/** | ||
* Encapsulates and tracks an element's linear parallax effect. | ||
*/ | ||
export class ParallaxElement { | ||
/** | ||
* @param {!Element} element The element to give a parallax effect. | ||
* @param {!function(number):string} transform Computes the transform from the position. | ||
*/ | ||
constructor(element, transform) { | ||
const factor = element.getAttribute(ATTR); | ||
|
||
/** @private @const {!Element} */ | ||
this.element_ = element; | ||
|
||
/** @private @const {!function(number):string} */ | ||
this.transform_ = transform; | ||
|
||
/** @private @const {number} */ | ||
this.factor_ = (factor ? parseFloat(factor) : 0.5) - 1; | ||
|
||
/** @private {number} */ | ||
this.offset_ = 0; | ||
} | ||
|
||
/** | ||
* Apply the parallax effect to the offset given how much the page | ||
* has moved since the last frame. | ||
* @param {number} delta The movement of the base layer e.g. the page. | ||
*/ | ||
update(delta) { | ||
this.offset_ += delta * this.factor_; | ||
setStyles(this.element_, {transform: this.transform_(this.offset_)}); | ||
} | ||
|
||
/** | ||
* True if the element is in the viewport. | ||
* @param {!../../../src/service/viewport-impl.Viewport} viewport | ||
* @return {boolean} | ||
*/ | ||
shouldUpdate(viewport) { | ||
const viewportRect = viewport.getRect(); | ||
const elementRect = viewport.getLayoutRect(this.element_); | ||
elementRect.top -= viewportRect.top; | ||
elementRect.bottom = elementRect.top + elementRect.height; | ||
return this.isRectInView_(elementRect, viewportRect.height); | ||
} | ||
|
||
/** | ||
* Check if a rectange is within the viewport. | ||
* @param {!../../../src/layout-rect.LayoutRectDef} rect | ||
* @param {number} viewportHeight | ||
* @private | ||
*/ | ||
isRectInView_(rect, viewportHeight) { | ||
return rect.bottom >= 0 && rect.top <= viewportHeight; | ||
} | ||
} | ||
|
||
/** | ||
* Constructs and installs scroll handlers on all [amp-fx-parallax] elements | ||
* in the document. | ||
* @param {!Window} global | ||
*/ | ||
function installParallaxHandlers(global) { | ||
const enabled = isExperimentOn(global, EXPERIMENT); | ||
user().assert(enabled, `Experiment "${EXPERIMENT}" is disabled.`); | ||
|
||
const doc = global.document; | ||
const viewport = viewportForDoc(doc); | ||
const parallaxService = getService(global, ATTR); | ||
const vsync = vsyncFor(global); | ||
|
||
const elements = toArray(doc.querySelectorAll(`[${ATTR}]`)); | ||
const parallaxElements = elements.map(e => new ParallaxElement(e, transform)); | ||
const mutate = | ||
parallaxMutate.bind(null, parallaxService, parallaxElements, viewport); | ||
|
||
viewport.onScroll(() => vsync.mutate(mutate)); | ||
mutate(); // initialize the elements with the current scroll position | ||
} | ||
|
||
/** | ||
* Create a value for the CSS transform property given a position. | ||
* @param {number} position | ||
* @return {string} | ||
*/ | ||
function transform(position) { | ||
return `translate3d(0,${position.toFixed(2)}px,0)`; | ||
} | ||
|
||
/** | ||
* Update each [amp-fx-parallax] element with the new scroll position. | ||
* Notify any listeners. | ||
* @param {!ParallaxService} parallaxService | ||
* @param {!Array<!ParallaxElement>} elements | ||
* @param {!../../../src/service/viewport-impl.Viewport} viewport | ||
*/ | ||
function parallaxMutate(parallaxService, elements, viewport) { | ||
const newScrollTop = viewport.getScrollTop(); | ||
const previousScrollTop = parallaxService.getPreviousScroll(); | ||
const delta = previousScrollTop - newScrollTop; | ||
|
||
elements.forEach(element => { | ||
if (!element.shouldUpdate(viewport)) { | ||
return; | ||
} | ||
element.update(delta); | ||
parallaxService.setPreviousScroll(newScrollTop); | ||
}); | ||
|
||
parallaxService.fire(newScrollTop); | ||
} | ||
|
||
/** | ||
* @param {!Window} win | ||
* @return {!ParallaxService} | ||
*/ | ||
export function installParallaxService(win) { | ||
return getService(win, ATTR, () => { | ||
return new ParallaxService(win); | ||
}).start_(); | ||
}; | ||
|
||
installParallaxService(AMP.win); |
Oops, something went wrong.