Server IP : 192.185.129.71 / Your IP : 3.144.3.100 Web Server : Apache System : Linux bh-ht-3.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : svymadmin ( 4072) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home4/svymadmin/public_html/vivekaexcel.edu.in/bkp/assets/plugins/sticky/ |
[ Home ] | [ C0mmand ] | [ 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);