mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
29 lines
654 B
HTML
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> |