Affix
javascript-affix
Example
The affix plugin toggles position: fixed;
on and off, emulating the effect found with position: sticky;
. The subnavigation on the right is a live demo of the affix plugin.
The affix plugin toggles position: fixed;
on and off, emulating the effect found with position: sticky;
. The subnavigation on the right is a live demo of the affix plugin.
Usage
Use the affix plugin via data attributes or manually with your own JavaScript. In both situations, you must provide CSS for the positioning and width of your affixed content.
Note: Do not use the affix plugin on an element contained in a relatively positioned element, such as a pulled or pushed column, due to a Safari rendering bug.
Positioning via CSS
The affix plugin toggles between three classes, each representing a particular state:
.affix
,.affix-top
, and.affix-bottom
. You must provide the styles, with the exception ofposition: fixed;
on.affix
, for these classes yourself (independent of this plugin) to handle the actual positions.Here's how the affix plugin works:
To start, the plugin adds
.affix-top
to indicate the element is in its top-most position. At this point no CSS positioning is required.Scrolling past the element you want affixed should trigger the actual affixing. This is where
.affix
replaces.affix-top
and setsposition: fixed;
(provided by Bootstrap's CSS).If a bottom offset is defined, scrolling past it should replace
.affix
with.affix-bottom
. Since offsets are optional, setting one requires you to set the appropriate CSS. In this case, addposition: absolute;
when necessary. The plugin uses the data attribute or JavaScript option to determine where to position the element from there.Follow the above steps to set your CSS for either of the usage options below.
Via data attributes
To easily add affix behavior to any element, just add
data-spy="affix"
to the element you want to spy on. Use offsets to define when to toggle the pinning of an element.Via JavaScript
Call the affix plugin via JavaScript:
Options
Options can be passed via data attributes or JavaScript. For data attributes, append the option name to
data-
, as indata-offset-top="200"
.offset: { top: 10 }
oroffset: { top: 10, bottom: 5 }
. Use a function when you need to dynamically calculate an offset.window
objectMethods
.affix(options)
Activates your content as affixed content. Accepts an optional options
object
..affix('checkPosition')
Recalculates the state of the affix based on the dimensions, position, and scroll position of the relevant elements. The
.affix
,.affix-top
, and.affix-bottom
classes are added to or removed from the affixed content according to the new state. This method needs to be called whenever the dimensions of the affixed content or the target element are changed, to ensure correct positioning of the affixed content.Events
Bootstrap's affix plugin exposes a few events for hooking into affix functionality.