PluginProbe
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor / 2.0.7
Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor v2.0.7
2.0.13 2.0.12 2.0.11 2.0.10 2.0.9 trunk 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8
blockenberg / blocks / image-collage / frontend.js

frontend.js in Blockenberg — 600+ Advanced Gutenberg Blocks & AI Agent for WordPress Block Editor 2.0.7, at blocks/image-collage/frontend.js

26 lines 773 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 (function () {
2 'use strict';
3
4 function initCollage() {
5 var collages = document.querySelectorAll('.bkbg-image-collage[data-animate-in="1"]');
6 if (!collages.length) return;
7
8 var io = new IntersectionObserver(function (entries) {
9 entries.forEach(function (entry) {
10 if (entry.isIntersecting) {
11 entry.target.classList.add('bkbg-ic--visible');
12 io.unobserve(entry.target);
13 }
14 });
15 }, { threshold: 0.15 });
16
17 collages.forEach(function (collage) { io.observe(collage); });
18 }
19
20 if (document.readyState === 'loading') {
21 document.addEventListener('DOMContentLoaded', initCollage);
22 } else {
23 initCollage();
24 }
25 }());
26