Skip to content

Instantly share code, notes, and snippets.

@Kelin2025
Created April 22, 2018 18:31
Show Gist options
  • Save Kelin2025/bd5b04418e1b00e5bbe2acf40b58ad42 to your computer and use it in GitHub Desktop.
Save Kelin2025/bd5b04418e1b00e5bbe2acf40b58ad42 to your computer and use it in GitHub Desktop.
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