Files
Electron.NET/ElectronNET.Host/splashscreen/index.html
2019-05-18 15:04:11 +02:00

29 lines
654 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Splashscreen</title>
</head>
<body>
<style>
body {
overflow: hidden;
}
</style>
<img alt="splashscreen" style="width: 100%; height: 100%;">
<script>
(() => {
const imgSrcPath = window.location.search.substr(1).split('=').pop();
const imageElement = document.getElementsByTagName('img')[0];
imageElement.setAttribute('src', imgSrcPath);
})();
</script>
</body>
</html>