Spaces:
Running
Running
File size: 1,669 Bytes
1e97236 12aa93d 1e97236 12aa93d 1e97236 e6f7b6a 0b9e2d3 e6f7b6a 1e97236 d1cb5ce 6e7a59c 0b9e2d3 d4ada7b 08ba1f8 6e7a59c 34fde85 f3a20b0 34fde85 f3a20b0 34fde85 1e97236 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | <!DOCTYPE html>
<html lang="en">
<head>
<style>
/* .container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 100%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
/*}*/
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.embed-container {
position: relative;
padding-top: 100%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
/*padding-bottom: 70.75%;*/
height: 0;
overflow: hidden;
}
.embed-container iframe {
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="embed-container">
<iframe
id="myIframe"
frameborder="0"
class="container p-0 flex-grow space-iframe"
allow="accelerometer; ambient-light-sensor; autoplay; battery; camera; document-domain; encrypted-media; fullscreen; geolocation; gyroscope; layout-animations; legacy-image-formats; magnetometer; microphone; midi; oversized-images; payment; picture-in-picture; publickey-credentials-get; sync-xhr; usb; vr ; wake-lock; xr-spatial-tracking"
sandbox="allow-forms allow-modals allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts allow-downloads"
></iframe>
</div>
<script>
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const model_url = urlParams.get("url");
console.log(model_url);
let myIframe = document.getElementById("myIframe");
let url_string = "https://omnibus-model-view.hf.space/";
let mod_url = model_url;
let adsURL = url_string+"?url="+mod_url;
console.log(adsURL);
myIframe.src = adsURL;
</script>
</body>
</html> |