Created
April 22, 2018 18:31
-
-
Save Kelin2025/bd5b04418e1b00e5bbe2acf40b58ad42 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const observer = new ResizeObserver(entries => { | |
entries.forEach(entry => { | |
const cr = entry.contentRect; | |
console.log('Element:', entry.target); | |
console.log(`Element size: ${cr.width}px x ${cr.height}px`); | |
console.log(`Element padding: ${cr.top}px ; ${cr.left}px`); | |
}) | |
}) | |
observer.observe(someElement) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment