jQuery plugin to move the element according to the scrolling window.
https://sutara79.github.io/jquery.simple-scroll-follow/
- GitHub: Clone or download.
- npm:
npm i jquery.simple-scroll-follow
- CDN (jsDelivr):
- jquery.simple-scroll-follow.min.js: v3.1.2
<div id="foo">Element to follow</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="jquery.simple-scroll-follow.min.js"></script>
body {
background: url(null) fixed; /* for Google Chrome */
}
#foo {
position: absolute;
}
$('#foo').simpleScrollFollow();
name | type | default | description |
---|---|---|---|
limit_elem | Object, string | $('body') |
An element that indicates lower limit to scroll |
min_width | number | 0 |
Minimum window width to enable this plugin |
enabled | boolean | true |
Enable scroll or not |
upper_side | string | null |
An fixed element that indicates upper limit to scroll |
lower_side | string | null |
An fixed element that indicates lower limit to scroll |
(since v3.0.0)
For the details, see documentation.
No. | type | default | description |
---|---|---|---|
1 | boolean | true |
true : this plugin resumes.false : this plugin stops. |