# Basic
HTML
<aside>Element to follow</aside> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="jquery.simple-scroll-follow.min.js"></script>
CSS
aside {
position: absolute;
}
JavaScript
$('aside').simpleScrollFollow();
# Attention
-
position: absolute
is required. -
It is not required, but for preventing a screen flickers on Google Chrome, the following is recommended.
CSS
body { background: url(null) fixed; }
# "limit_elem" for setting bottom limit.
HTML
<div> <article> ... </article> <aside> ... </aside> </div>
JavaScript
$('aside').simpleScrollFollow({ limit_elem: 'article' });
If limit_elem
is empty, it will be set to 'body'
.
# "min_width" for responsive design
CSS
/* for PC */ @media screen and (min-width:992px) { aside { width: 300px; position: absolute; top: 0px; left: 500px; } } /* for Smart Phone */ @media screen and (max-width:991px) { aside { width: 600px; position: static; top: auto; left: auto; } }
JavaScript
$('aside').simpleScrollFollow({ min_width: 992 // Integer. Don't add "px". });
# "enabled" for disabling this plugin by default
$('#enabled').simpleScrollFollow({ enabled: true }); $('#disabled').simpleScrollFollow({ enabled: false });
# Fixed element
Since: v3.1.0
If you use fixed menu such as Bootstrap4 .navbar .fixed-top, the options below will help you.
$('aside').simpleScrollFollow({ upper_side: '#menu-fixed-top', lower_side: '#menu-fixed-bottom' });
# Call public method from outside
Since: v3.0.0
Set the method name to the first argument.
The rest argument is for that method.
// apply plugin firstly $('aside').simpleScrollFollow(); $('#toggle_scroll').click(function() { if ($(this).text() == 'click to disable scroll') { $('aside').simpleScrollFollow('setEnabled', false); $(this).text('click to enable scroll'); } else { $('aside').simpleScrollFollow('setEnabled', true); $(this).text('click to disable scroll'); } });
# A more complex example
This plugin is also used in current page.