Skip to content

Commit

Permalink
Deploying to gh-pages from @ 70be9fd 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
tahaak67 committed Mar 30, 2024
1 parent de981ab commit 585e26c
Showing 1 changed file with 44 additions and 2 deletions.
46 changes: 44 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,53 @@
<head>
<meta charset="UTF-8">
<title>Compose App</title>
<style>
#loading-indicator {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100vh;
background-color: #f0f0f0;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
}

.spinner {
border: 4px solid rgba(0, 100, 105, 1); /* Color set to 0xFF006971 */
border-left-color: rgba(0, 100, 105, 0.1);
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}

@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<script type="application/javascript" src="skiko.js"></script>
<script type="application/javascript" src="composeApp.js"></script>
</head>
<body>
<div id="loading-indicator">
<!-- Circular loading spinner -->
<div class="spinner"></div>
</div>
<canvas id="ComposeTarget"></canvas>
<script src="openurl.js"></script>
<script src="openurl.js"></script>
<script>
window.onload = function() {
// Hide the loading indicator when the page is fully loaded
document.getElementById("loading-indicator").style.display = "none";
};
</script>
</body>
</html>
</html>

0 comments on commit 585e26c

Please sign in to comment.