Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<style>
iframe {
width: 300px;
height: 150px;
border: none;
}
</style>
<script>
window.addEventListener("message", event => {
requestAnimationFrame(() => setTimeout(() => {
document.querySelector('iframe').contentWindow.postMessage(event.data, "*");
}));
});
</script>