brawl-stars-assets/54.243/fyb_iframe_endcard_tmpl.html
тейлс a5b5f5708c 54.243
2024-02-27 15:45:28 +04:00

15 lines
No EOL
520 B
HTML

<script>
var ifr = document.createElement('iframe');
window.addEventListener('load', function(e) {
ifr.setAttribute('src', '$__SrcIframeUrl__$');
ifr.setAttribute('style', 'display:block; border:none; margin:0; padding:0; overflow:hidden;');
ifr.width = window.innerWidth;
document.body.appendChild(ifr);
});
window.addEventListener('resize', function(e) {
ifr.width = document.body.clientWidth;
ifr.height = document.body.clientHeight;
});
</script>