Sticky Directive for Angular 2+
An Angular directive for making things sticky when the user scrolls (for Angular 2+) with no jQuery Dependency.
with npm:
npm install @w11k/angular-sticky-things
with yarn:
yarn add @w11k/angular-sticky-things
Now import the AngularStickyThingsModule in the corresponding Module ``` import {AngularStickyThingsModule} from '@w11k/angular-sticky-things';
@NgModule({ declarations: [ ], imports: [ AngularStickyThingsModule, ], providers: [], }) export class SomeModule { } ```
I am sticky!
If a boundary element is defined, the sticky element scrolls only within the height of the boundary element and then stops. This is useful if you have multiple sticky elements since it prevents stacking. You can take a look at the examples.
htmlI am sticky but only inside #boundary!
Hint: The boundary feature is still in beta - position errors might occur!
The spacer is not required but prevents a page jump when the sticky effect steps in.
An
enable(default
true) input can be used to dynamically activate or deactivate the sticky directive (e.g. to have a sticky navbar only in certain conditions). You can take a look at the examples.
I can become sticky only when enableSticky is true!
A
marginTop(default
0) input can be used to add some top spacing to the sticky element, in case you don't want it to stick right at the top. It expects the
numberof pixels you want to use for the space. You can take a look at the examples. Accordingly,
marginBottomis available.
I leave 30px of space to the top when I'm sticky!
I leave 30px of space to the top when I'm sticky!
Example Output:
[Log] stickyPositon - {offsetY: 786, bottomBoundary: 1406.9999389648438, upperScreenEdgeAt: 75, marginBottom: "50", marginTop: "30"} [Log] stickyStatus - {isSticky: false, reachedUpperEdge: true, reachedLowerEdge: false}
Per default Sticky Things expects your body to be the element that scrolls. However, if Sticky Things is used in an
overflow-container, that container must be made known to the directive.
This is best done with a query selector. If a string is provided it will be called with
document.querySelector. Instead an HTML element (nativeElement) can be provided as well.
Note: In a scrollable container boundary, spacer and margins don't work.
I'm special, since my content scrolls and not the body.
...
Sticky
.scrollable-container { height: 300px; margin: 3em auto; overflow: scroll; }