npm.io
2.5.0 • Published 10 years ago

knockout-inview

Licence
ISC
Version
2.5.0
Deps
0
Vulns
0
Weekly
0
Stars
4

knockout-inview

Simple knockout binding to toggle a value when an element comes into or leaves the viewport.

Usage

<div data-bind="inview: foo"></div>
var foo = ko.observable(false);
foo.subscribe(function (val) {
  // will be triggered when inview update the val
});

Installation

This is how I use it with a Webpack bundled project. Your set-up may be different.

$ npm install knockout-inview --save-dev
import ko from "knockout";
import inview from "knockout-inview";

ko.bindingHandlers.inview = inview(ko);

Keywords