Skip to content

Instantly share code, notes, and snippets.

View Rabbitzzc's full-sized avatar
🙃
seize the day!

Rabbitzzc Rabbitzzc

🙃
seize the day!
View GitHub Profile
@Rabbitzzc
Rabbitzzc / bubble-iframe.js
Created January 18, 2022 08:31 — forked from dmail/bubble-iframe.js
Bubbling iframe events
const bubbleIframeEvents = (iframe, document) => {
const iframeWindow = iframe.contentWindow
iframeWindow.addEventListener(
'mousemove',
(event) => {
const boundingClientRect = iframe.getBoundingClientRect()
const fakeEvent = new CustomEvent(
'mousemove',
{