PluginProbe
Block Animations, Motion & Scroll Effects – Ghost Kit / trunk
Block Animations, Motion & Scroll Effects – Ghost Kit vtrunk
3.7.1 3.7.0 3.6.1 trunk 1.6.3 2.25.0 3.3.0 3.3.1 3.3.2 3.3.3 3.4.0 3.4.1 3.4.2 3.4.3 3.4.4 3.4.5 3.4.6 3.5.0 3.5.1 3.6.0
ghostkit / assets / js / main.js

main.js in Block Animations, Motion & Scroll Effects – Ghost Kit trunk, at assets/js/main.js

24 lines 439 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import rafSchd from 'raf-schd';
2 import { throttle } from 'throttle-debounce';
3
4 const { GHOSTKIT } = window;
5 const { events } = GHOSTKIT;
6
7 events.trigger(document, 'init.gkt');
8
9 const initBlocksThrottled = throttle(
10 200,
11 rafSchd(() => {
12 events.trigger(document, 'init.blocks.gkt');
13 })
14 );
15
16 // Init blocks.
17 new window.MutationObserver(initBlocksThrottled).observe(
18 document.documentElement,
19 {
20 childList: true,
21 subtree: true,
22 }
23 );
24