This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Credits: https://gist.github.com/OrionReed/4c3778ebc2b5026d2354359ca49077ca | |
(() => { | |
const THICKNESS = 5; | |
const MAX_ROTATION = 180; | |
const DISTANCE = 10000; | |
const getDOMDepth = element => [...element.children].reduce((max, child) => Math.max(max, getDOMDepth(child)), 0) + 1; | |
const body = document.body; |