Home / Admin / Footer
Duplicate Snippet

Embed Snippet on Your Site

Footer

Code Preview
php
<?php
/*
 * MS GROUP WEBSITE — VERSION B
 * JavaScript — Scroll Reveal Animations
 * ============================================================
 * Uses IntersectionObserver to fade elements up on scroll.
 * In WordPress, this can be replaced with:
 * - Elementor entrance animations (built-in)
 * - ScrollReveal plugin
 * - AOS (Animate On Scroll) plugin
 * ============================================================
 */
var _io = new IntersectionObserver(function(entries){
  entries.forEach(function(e){ if(e.isIntersecting) e.target.classList.add('on'); });
},{threshold:0.08,rootMargin:'0px 0px -30px 0px'});
document.querySelectorAll('.reveal').forEach(function(el){ _io.observe(el); });

Comments

Add a Comment