| Server IP : 103.161.17.216 / Your IP : 216.73.216.1 Web Server : nginx/1.18.0 System : Linux tipsysaigoncharming 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/app.houseland.info/assets/plugins/sticky/ |
Upload File : |
/**
* Sticky.js
* Library for sticky elements written in vanilla javascript. With this library you can easily set sticky elements on your website. It's also responsive.
*
* @version 1.2.0
* @author Rafal Galus <biuro@rafalgalus.pl>
* @website https://rgalus.github.io/sticky-js/
* @repo https://github.com/rgalus/sticky-js
* @license https://github.com/rgalus/sticky-js/blob/master/LICENSE
*/
class Sticky {
/**
* Sticky instance constructor
* @constructor
* @param {string} selector - Selector which we can find elements
* @param {string} options - Global options for sticky elements (could be overwritten by data-{option}="" attributes)
*/
constructor(selector = '', options = {}) {
this.selector = selector;
this.elements = [];
this.version = '1.2.0';
this.vp = this.getViewportSize();
this.body = document.querySelector('body');
this.options = {
wrap: options.wrap || false,
marginTop: options.marginTop || 0,
stickyFor: options.stickyFor || 0,
stickyClass: options.stickyClass || null,
stickyContainer: options.stickyContainer || 'body',
};
this.updateScrollTopPosition = this.updateScrollTopPosition.bind(this);
this.updateScrollTopPosition();
window.addEventListener('load', this.updateScrollTopPosition);
window.addEventListener('scroll', this.updateScrollTopPosition);
this.run();
}
/**
* Function that waits for page to be fully loaded and then renders & activates every sticky element found with specified selector
* @function
*/
run() {
// wait for page to be fully loaded
const pageLoaded = setInterval(() => {
if (document.readyState === 'complete') {
clearInterval(pageLoaded);
const elements = document.querySelectorAll(this.selector);
this.forEach(elements, (element) => this.renderElement(element));
}
}, 10);
}
/**
* Function that assign needed variables for sticky element, that are used in future for calculations and other
* @function
* @param {node} element - Element to be rendered
*/
renderElement(element) {
// create container for variables needed in future
element.sticky = {};
// set default variables
element.sticky.active = false;
element.sticky.marginTop = parseInt(element.getAttribute('data-margin-top')) || this.options.marginTop;
element.sticky.stickyFor = parseInt(element.getAttribute('data-sticky-for')) || this.options.stickyFor;
element.sticky.stickyClass = element.getAttribute('data-sticky-class') || this.options.stickyClass;
element.sticky.wrap = element.hasAttribute('data-sticky-wrap') ? true : this.options.wrap;
// @todo attribute for stickyContainer
// element.sticky.stickyContainer = element.getAttribute('data-sticky-container') || this.options.stickyContainer;
element.sticky.stickyContainer = this.options.stickyContainer;
element.sticky.container = this.getStickyContainer(element);
element.sticky.container.rect = this.getRectangle(element.sticky.container);
element.sticky.rect = this.getRectangle(element);
// fix when element is image that has not yet loaded and width, height = 0
if (element.tagName.toLowerCase() === 'img') {
element.onload = () => element.sticky.rect = this.getRectangle(element);
}
if (element.sticky.wrap) {
this.wrapElement(element);
}
// activate rendered element
this.activate(element);
}
/**
* Wraps element into placeholder element
* @function
* @param {node} element - Element to be wrapped
*/
wrapElement(element) {
element.insertAdjacentHTML('beforebegin', '<span></span>');
element.previousSibling.appendChild(element);
}
/**
* Function that activates element when specified conditions are met and then initalise events
* @function
* @param {node} element - Element to be activated
*/
activate(element) {
if (
((element.sticky.rect.top + element.sticky.rect.height) < (element.sticky.container.rect.top + element.sticky.container.rect.height))
&& (element.sticky.stickyFor < this.vp.width)
&& !element.sticky.active
) {
element.sticky.active = true;
}
if (this.elements.indexOf(element) < 0) {
this.elements.push(element);
}
if (!element.sticky.resizeEvent) {
this.initResizeEvents(element);
element.sticky.resizeEvent = true;
}
if (!element.sticky.scrollEvent) {
this.initScrollEvents(element);
element.sticky.scrollEvent = true;
}
this.setPosition(element);
}
/**
* Function which is adding onResizeEvents to window listener and assigns function to element as resizeListener
* @function
* @param {node} element - Element for which resize events are initialised
*/
initResizeEvents(element) {
element.sticky.resizeListener = () => this.onResizeEvents(element);
window.addEventListener('resize', element.sticky.resizeListener);
}
/**
* Removes element listener from resize event
* @function
* @param {node} element - Element from which listener is deleted
*/
destroyResizeEvents(element) {
window.removeEventListener('resize', element.sticky.resizeListener);
}
/**
* Function which is fired when user resize window. It checks if element should be activated or deactivated and then run setPosition function
* @function
* @param {node} element - Element for which event function is fired
*/
onResizeEvents(element) {
this.vp = this.getViewportSize();
element.sticky.rect = this.getRectangle(element);
element.sticky.container.rect = this.getRectangle(element.sticky.container);
if (
((element.sticky.rect.top + element.sticky.rect.height) < (element.sticky.container.rect.top + element.sticky.container.rect.height))
&& (element.sticky.stickyFor < this.vp.width)
&& !element.sticky.active
) {
element.sticky.active = true;
} else if (
((element.sticky.rect.top + element.sticky.rect.height) >= (element.sticky.container.rect.top + element.sticky.container.rect.height))
|| element.sticky.stickyFor >= this.vp.width
&& element.sticky.active
) {
element.sticky.active = false;
}
this.setPosition(element);
}
/**
* Function which is adding onScrollEvents to window listener and assigns function to element as scrollListener
* @function
* @param {node} element - Element for which scroll events are initialised
*/
initScrollEvents(element) {
element.sticky.scrollListener = () => this.onScrollEvents(element);
window.addEventListener('scroll', element.sticky.scrollListener);
}
/**
* Removes element listener from scroll event
* @function
* @param {node} element - Element from which listener is deleted
*/
destroyScrollEvents(element) {
window.removeEventListener('scroll', element.sticky.scrollListener);
}
/**
* Function which is fired when user scroll window. If element is active, function is invoking setPosition function
* @function
* @param {node} element - Element for which event function is fired
*/
onScrollEvents(element) {
if (element.sticky.active) {
this.setPosition(element);
}
}
/**
* Main function for the library. Here are some condition calculations and css appending for sticky element when user scroll window
* @function
* @param {node} element - Element that will be positioned if it's active
*/
setPosition(element) {
this.css(element, { position: '', width: '', top: '', left: '' });
if ((this.vp.height < element.sticky.rect.height) || !element.sticky.active) {
return;
}
if (!element.sticky.rect.width) {
element.sticky.rect = this.getRectangle(element);
}
if (element.sticky.wrap) {
this.css(element.parentNode, {
display: 'block',
width: element.sticky.rect.width + 'px',
height: element.sticky.rect.height + 'px',
});
}
if (
element.sticky.rect.top === 0
&& element.sticky.container === this.body
) {
this.css(element, {
position: 'fixed',
top: element.sticky.rect.top + 'px',
left: element.sticky.rect.left + 'px',
width: element.sticky.rect.width + 'px',
});
} else if (this.scrollTop > (element.sticky.rect.top - element.sticky.marginTop)) {
this.css(element, {
position: 'fixed',
width: element.sticky.rect.width + 'px',
left: element.sticky.rect.left + 'px',
});
if (
(this.scrollTop + element.sticky.rect.height + element.sticky.marginTop)
> (element.sticky.container.rect.top + element.sticky.container.offsetHeight)
) {
if (element.sticky.stickyClass) {
element.classList.remove(element.sticky.stickyClass);
}
this.css(element, {
top: (element.sticky.container.rect.top + element.sticky.container.offsetHeight) - (this.scrollTop + element.sticky.rect.height) + 'px' }
);
} else {
if (element.sticky.stickyClass) {
element.classList.add(element.sticky.stickyClass);
}
this.css(element, { top: element.sticky.marginTop + 'px' });
}
} else {
if (element.sticky.stickyClass) {
element.classList.remove(element.sticky.stickyClass);
}
this.css(element, { position: '', width: '', top: '', left: '' });
if (element.sticky.wrap) {
this.css(element.parentNode, { display: '', width: '', height: '' });
}
}
}
/**
* Function that updates element sticky rectangle (with sticky container), then activate or deactivate element, then update position if it's active
* @function
*/
update() {
this.forEach(this.elements, (element) => {
element.sticky.rect = this.getRectangle(element);
element.sticky.container.rect = this.getRectangle(element.sticky.container);
this.activate(element);
this.setPosition(element);
});
}
/**
* Destroys sticky element, remove listeners
* @function
*/
destroy() {
this.forEach(this.elements, (element) => {
this.destroyResizeEvents(element);
this.destroyScrollEvents(element);
delete element.sticky;
});
}
/**
* Function that returns container element in which sticky element is stuck (if is not specified, then it's stuck to body)
* @function
* @param {node} element - Element which sticky container are looked for
* @return {node} element - Sticky container
*/
getStickyContainer(element) {
let container = element.parentNode;
while (
!container.hasAttribute('data-sticky-container')
&& !container.parentNode.querySelector(element.sticky.stickyContainer)
&& container !== this.body
) {
container = container.parentNode;
}
return container;
}
/**
* Function that returns element rectangle & position (width, height, top, left)
* @function
* @param {node} element - Element which position & rectangle are returned
* @return {object}
*/
getRectangle(element) {
this.css(element, { position: '', width: '', top: '', left: '' });
const width = Math.max(element.offsetWidth, element.clientWidth, element.scrollWidth);
const height = Math.max(element.offsetHeight, element.clientHeight, element.scrollHeight);
let top = 0;
let left = 0;
do {
top += element.offsetTop || 0;
left += element.offsetLeft || 0;
element = element.offsetParent;
} while(element);
return { top, left, width, height };
}
/**
* Function that returns viewport dimensions
* @function
* @return {object}
*/
getViewportSize() {
return {
width: Math.max(document.documentElement.clientWidth, window.innerWidth || 0),
height: Math.max(document.documentElement.clientHeight, window.innerHeight || 0),
};
}
/**
* Function that updates window scroll position
* @function
* @return {number}
*/
updateScrollTopPosition() {
this.scrollTop = (window.pageYOffset || document.scrollTop) - (document.clientTop || 0) || 0;
}
/**
* Helper function for loops
* @helper
* @param {array}
* @param {function} callback - Callback function (no need for explanation)
*/
forEach(array, callback) {
for (let i = 0, len = array.length; i < len; i++) {
callback(array[i]);
}
}
/**
* Helper function to add/remove css properties for specified element.
* @helper
* @param {node} element - DOM element
* @param {object} properties - CSS properties that will be added/removed from specified element
*/
css(element, properties) {
for (let property in properties) {
if (properties.hasOwnProperty(property)) {
element.style[property] = properties[property];
}
}
}
}
/**
* Export function that supports AMD, CommonJS and Plain Browser.
*/
((root, factory) => {
if (typeof exports !== 'undefined') {
module.exports = factory;
} else if (typeof define === 'function' && define.amd) {
define([], function() {
return factory;
});
} else {
root.Sticky = factory;
}
})(this, Sticky);