ryzen-controller/public/splash.html

28 lines
808 B
HTML
Raw Normal View History

<html style="margin:0 0 0 0;padding:0 0 0 0;overflow:hidden;">
<head>
<script>
document.onreadystatechange=(e) => {
// use set timeout, otherwise css animation not triggering
setTimeout(() => document.body.classList.add('sharp'),450);
};
</script>
<style>
body {
transition: all 1.5s ease-in;
filter:blur(30px);
}
body.sharp{
filter: blur(0);
}
</style>
</head>
<body style="margin:0;padding:0;overflow:hidden;width:900px;height:900px;">
<div
style="position:absolute; width:900px; height: 500px; top: 200px; margin:0;padding:0; background:radial-gradient(rgba(0,0,0,.35), transparent 40%);filter:blur(50px);"
></div>
<img style="position:absolute; margin:0;padding:0;width:900px;height:900px" src="./splash.png" />
</body>
</html>