Skip to content

Instantly share code, notes, and snippets.

View Finelai's full-sized avatar
💭
Looking for work

Sergei K Finelai

💭
Looking for work
View GitHub Profile
@Finelai
Finelai / sticky.js
Created November 14, 2019 11:49 — forked from javierarques/sticky.js
Sticky Sideabr With Vanilla Javascript. Detects scroll and set fixed the element. Live example: http://codepen.io/javiarques/pen/vKdgjR
// Sticky Nav Component
var Sticky = (function() {
'use strict';
var CSS_CLASS_ACTIVE = 'is-fixed';
var Sticky = {
element: null,
position: 0,
addEvents: function() {