0.0.8 • Published 8 years ago
ember-scrolled-to v0.0.8
ember-scrolled-to
This addon provides a mixin for calling an arbitrary function a single time when a component is scrolled to.
Alternatives
Note that ember-in-viewport is a more mature and featureful Ember addon which does roughly the same thing. Non-Ember alternatives include scrollin and scrollmonitor.
Usage
The callback could be used to lazy-load images of artificially-flavored snacks or to kick off an animation of an apple being sliced into eight pieces. The possibilities are endless!
import Ember from 'ember';
import ScrolledTo from 'ember-scrolled-to';
export default Ember.Component.extend(ScrolledTo, {
scrolledTo() {
// Your code goes here. For example:
this.set('classNames', ['cornucopia']);
},
});Clearly this addon should have been named ember-fruit-scroll-up.
Installation
git clone https://github.com/w-hat/ember-scrolled-tocd ember-scrolled-tonpm installbower install
Running
ember serve- Visit your app at http://localhost:4200.
Running Tests
npm test(Runsember try:eachto test your addon against multiple Ember versions)ember testember test --server
Building
ember build
For more information on using ember-cli, visit https://ember-cli.com/.