cloudstudio
Version:
Run VS Code on a remote server.
60 lines (52 loc) • 1.59 kB
HTML
<!-- Copyright (C) CODING. All rights reserved. -->
<html>
<head>
<script>
performance.mark('code/didStartRenderer');
</script>
<meta charset="utf-8" />
<!-- Mobile tweaks -->
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="Code">
<!-- Disable pinch zooming -->
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<style>
#load-spinner {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
</style>
</head>
<body aria-label="">
<div id="load-spinner">
<svg height="150" width="150" version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px"
y="0px" enable-background="new 0 0 0 0" xml:space="preserve">
<path id="path" fill="#ccc"
d="M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50">
<animateTransform attributeName="transform" attributeType="XML" type="rotate" dur="0.5s" from="0 50 50"
to="360 50 50" repeatCount="indefinite" />
</path>
</svg>
</div>
</body>
<script>
window.addEventListener('message', function(event) {
// if (event.data.background) {
// document.body.style.background = event.data.background;
// }
})
</script>
<script>
performance.mark('code/willLoadWorkbenchMain');
</script>
</html>