Spaces:
Running
Running
File size: 1,016 Bytes
40fe9e3 8cea517 40fe9e3 8cea517 40fe9e3 8cea517 40fe9e3 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Black Forest Labs</title>
<style>
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
iframe {
width: 100%;
height: 100vh;
border: none;
}
</style>
</head>
<body>
<iframe id="streamlit-frame"></iframe>
<script>
const urls = [
"https://share.streamlit.io/?embed=true",
"https://square-disk-5955.ploomberapp.io/?embed=true"
];
function loadBalancedUrl() {
const randomIndex = Math.floor(Math.random() * urls.length);
return urls[randomIndex];
}
window.onload = function() {
const iframe = document.getElementById('streamlit-frame');
iframe.src = loadBalancedUrl();
};
</script>
</body>
</html> |