Skip to content

Instantly share code, notes, and snippets.

View shettayyy's full-sized avatar

Rahul Shetty shettayyy

View GitHub Profile
@shettayyy
shettayyy / head-room-with-interval.js
Last active June 12, 2016 11:37
Auto show hide sliding header with setInterval using pure javascript
import classie from 'desandro-classie';
export function SlidingHeader(options) {
this.init(options);
}
SlidingHeader.prototype.init = function(options) {
// Define the settings as an object
let settings = {
'element': options.element,