Boton iKow

Code
Es necesario que tanto el iframe como el script sea agregado a tu proyecto. el Api Key ya estara integrado en tu codigo. Solo debes copiar y pegar desde tu dashboard.
<iframe id="iframe" src="https://button.ikowapp.com/?apiKey=Tu-Api-Key"
frameBorder="0"
scrolling="no"
width="100%"
allow="camera; microphone"
style="position:fixed;bottom:0px;right:0px;z-index:40;"
>
</iframe>
<script>
setTimeout(function(){
window.addEventListener("message", function() {
var isOpenContainer = event.data["isOpenContainer"];
document.getElementById("iframe").height = isOpenContainer ? "200" : "100%";
console.log(!isOpenContainer);
}, false);
}, 3000);
</script>
Como se veria en tu WEB
cuando implementas en tu web, aparecera en la aprte inferior derecha la burbuja de ikow. el cual solo mostrara a tus asesores y tus sedes.

Last updated
Was this helpful?