Skip to content

Instantly share code, notes, and snippets.

@ninze
ninze / jquery.scrollToTop.js
Created April 5, 2018 19:32 — forked from monkeymonk/jquery.scrollToTop.js
ES6 jQuery plugin definition
import $ from 'jquery';
import plugin from './plugin';
class ScrollToTop {
constructor(element, options) {
const $element = $(element);
$(window).scroll(function () {
if ($(this).scrollTop() > options.offset) {
$element.fadeIn();