Created
September 5, 2021 06:58
-
-
Save KittenCodes/5ce62c1455ebd5728eaea489b517de28 to your computer and use it in GitHub Desktop.
Change the height of Oxygen's Shape Dividers on scroll
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
var ready = (callback) => { | |
if (document.readyState != 'loading') callback(); | |
else document.addEventListener('DOMContentLoaded', callback); | |
} | |
ready ( () => { | |
if (window.angular) { return; } | |
calcHeight(); | |
}) | |
document.addEventListener('scroll', function() { | |
if (window.angular) { return; } | |
calcHeight(); | |
}) | |
function calcHeight() { | |
document.querySelectorAll('.oxy-shape-divider').forEach( shape => { | |
var top = shape.getBoundingClientRect().top; | |
shape.querySelector('svg').style.height = top / 3 + 'px'; | |
}) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment