Virtuell anprobieren

<script>
window.ShopifyTryOnConfig = {
  storeUrl: "diorosunglasses.com",
  cartAddUrl: "/cart/add.js",
  products: []
};
</script>

<iframe 
  id="tryon-iframe"
  src="https://virtual-glasses-tryon.vercel.app/" 
  style="width: 100%; height: 100vh; border: none; margin: 0; padding: 0;"
  title="Virtuelle Anprobe"
  allow="camera; microphone">
</iframe>

<script>
document.getElementById('tryon-iframe').onload = function() {
  const iframeWindow = document.getElementById('tryon-iframe').contentWindow;
  iframeWindow.postMessage({
    type: 'SHOPIFY_CONFIG',
    config: window.ShopifyTryOnConfig
  }, '*');
};
</script>