VFINDIT
Skip to content
  • Our Story
  • Our Services
  • Our Blogs
  • Our Contact
Contact Us

Pages

  • Home
  • Pages
Menu
  • Our Story
  • Our Services
  • Out Blogs
  • Our Contact

Contact US

  • Email: info@vfindit.com
  • US Phone: +1 415 434 5676
  • Calendly Meeting
Business hours
Weekdays 08:00 AM - 06:00 PM EST
Saturday & Sunday Holiday

© VFINDIT Global Inc. All Rights Reserved.

  • Terms and Privacy Policy
const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } );