Skip to content

Instantly share code, notes, and snippets.

View mikhy888's full-sized avatar
💭
I may be slow to respond.

Mikhil Jose mikhy888

💭
I may be slow to respond.
  • Bangalore, India
View GitHub Profile
@mikhy888
mikhy888 / Single side scroll reveal animation
Created January 29, 2019 11:57
Single side scroll reveal animation
//scroll direction and anim
var scrollDirection = function (elem) {
$(window).on('DOMMouseScroll mousewheel', function (event) {
if (event.originalEvent.detail > 0 || event.originalEvent.wheelDelta < 0) {
if (elem.parent().isOnScreen()) {
console.log("malar");
elem.each(function () {
var $this = $(this);
var delay = $this.attr("data-delay");
setTimeout(function () {