shx-product-pipeline-web/iframe.html

30 lines
770 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<iframe
id="shx-product-pipeline"
style="width: 100%; border: none; height: 1257px"
src="https://pp.shinnex.de/"
title="Produkt Pipeline"
scrolling="no"
onload="
(function() {
function resizeIframe(event) {
if (event.origin == 'https://pp.shinnex.de') {
const iframe = document.getElementById('shx-product-pipeline');
iframe.style.height = event.data + 'px';
}
}
window.addEventListener('message', resizeIframe, false)
})();
"
></iframe>
</body>
</html>