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 / feature-showcase / frontend.js

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

20 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 wp.domReady(function () {
2 document.querySelectorAll('.bkbg-fsc-wrapper').forEach(function (wrapper) {
3 var rows = wrapper.querySelectorAll('.bkbg-fsc-row.bkbg-fsc-anim');
4 if (!rows.length) return;
5
6 var io = new IntersectionObserver(function (entries) {
7 entries.forEach(function (entry, idx) {
8 if (entry.isIntersecting) {
9 setTimeout(function () {
10 entry.target.classList.add('bkbg-fsc-visible');
11 }, idx * 120);
12 io.unobserve(entry.target);
13 }
14 });
15 }, { threshold: 0.12 });
16
17 rows.forEach(function (row) { io.observe(row); });
18 });
19 });
20