let iframeContainer = document.createElement("div"); iframeContainer.id = 'gozic-widget'; let iframeAnimation = document.createElement("div"); iframeAnimation.id = 'gozic-widget-animation'; let iframeContent = document.createElement("iframe"); iframeContent.id = 'gozic-iframe'; iframeContent.src = "https://gozic.vn/module/chat-firebase/iframe"; iframeContent.width = 60; iframeContent.height = 60; iframeContent.frameBorder = '0'; iframeContent.allowFullscreen = true; // Config from server let bottom = 50; let right = 50; let responsive_bottom = 10; let responsive_right = 10; iframeContainer.appendChild(iframeAnimation); iframeContainer.appendChild(iframeContent); document.body.appendChild(iframeContainer); document.head.innerHTML += ( `` ) // Toggle chat iframe size let showChat = false; window.onmessage = function(e) { if (e.data == 'showChat' && !showChat) { document.querySelector("div#gozic-widget > iframe").setAttribute("width", "440"); document.querySelector("div#gozic-widget > iframe").setAttribute("height", "813"); showChat = true; } else if (e.data == 'hideChat' && showChat) { document.querySelector("div#gozic-widget > iframe").setAttribute("width", "60"); document.querySelector("div#gozic-widget > iframe").setAttribute("height", "60"); showChat = false; } };