Web Integration
Basic Embedding
<iframe
src="https://{clientId}.loveslisa.tech/s/{showId}"
width="100%"
height="100%"
style="border: none;"
allow="autoplay; clipboard-write"
/>
Communication Between LiSA Player and the Web Environment
Sending Messages to the LiSA Player
const iframe = document.querySelector('iframe');
const message = {
recipient: 'LiSA',
sender: 'Me',
};
iframe.contentWindow.postMessage(message, 'https://{clientId}.loveslisa.tech/s/{showId}');Receiving Messages from the LiSA Player
Last updated