[Splash > UI] Replicate Discord's UI look
This commit is contained in:
parent
6f9b790031
commit
c5fe63413c
1 changed files with 50 additions and 30 deletions
|
@ -1,55 +1,82 @@
|
||||||
<div id="text">openasar go brr</div>
|
<video loop autoplay src="https://canary.discord.com/assets/3b0d96ed8113994f3d139088726cfecd.webm"></video>
|
||||||
|
|
||||||
|
<div id="text">Launching...</div>
|
||||||
|
|
||||||
<div id="bar-container"></div>
|
<div id="bar-container"></div>
|
||||||
<div id="bar-fill"></div>
|
<div id="bar-fill"></div>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@font-face {
|
||||||
|
font-family: Whitney;
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: normal;
|
||||||
|
src: url(https://goosemod.com/font/whitney_400.woff) format("woff");
|
||||||
|
}
|
||||||
|
|
||||||
html, body {
|
html, body {
|
||||||
|
-webkit-app-region: drag;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
width: 300px;
|
||||||
|
height: 300px;
|
||||||
|
|
||||||
background: #101418;
|
background: #282b30;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
color: rgba(255, 255, 255, 0.97);
|
font-family: 'Whitney', sans-serif;
|
||||||
font-family: sans-serif;
|
|
||||||
|
box-sizing: border-box;
|
||||||
|
-webkit-user-select: none;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
video {
|
||||||
|
width: 200px;
|
||||||
|
height: 150px;
|
||||||
|
object-fit: cover;
|
||||||
}
|
}
|
||||||
|
|
||||||
#text {
|
#text {
|
||||||
position: absolute;
|
|
||||||
top: 45%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
|
|
||||||
font-size: 7vw;
|
font-size: 7vw;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
text-transform: capitalize;
|
color: #fff;
|
||||||
|
font-weight: 400;
|
||||||
|
font-style: italic;
|
||||||
|
font-size: 16px;
|
||||||
|
|
||||||
|
text-transform: uppercase;
|
||||||
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bar-container, #bar-fill {
|
#bar-container, #bar-fill {
|
||||||
position: absolute;
|
margin-top: 10px;
|
||||||
top: 58%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
|
|
||||||
width: 80%;
|
width: 180px;
|
||||||
height: 5%;
|
height: 8px;
|
||||||
|
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
|
||||||
display: none;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#bar-container {
|
#bar-container {
|
||||||
background: #202428;
|
position: absolute;
|
||||||
|
background: rgba(255, 255, 255, 0.1);
|
||||||
}
|
}
|
||||||
|
|
||||||
#bar-fill {
|
#bar-fill {
|
||||||
background: rgb(88, 101, 242);
|
background-color: #737f8d;
|
||||||
width: 0;
|
width: 0;
|
||||||
|
|
||||||
transform: translate(0%, -50%);
|
transform: translate(0%, -50%);
|
||||||
|
@ -57,7 +84,6 @@
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
const text = document.querySelector('#text');
|
const text = document.querySelector('#text');
|
||||||
|
|
||||||
|
@ -66,16 +92,14 @@
|
||||||
|
|
||||||
DiscordSplash.signalReady();
|
DiscordSplash.signalReady();
|
||||||
|
|
||||||
|
const outOfStates = [ 'downloading-updates', 'installing-updates' ];
|
||||||
DiscordSplash.onStateUpdate(({ status, current, total, progress }) => {
|
DiscordSplash.onStateUpdate(({ status, current, total, progress }) => {
|
||||||
console.log('onStateUpdate', progress);
|
text.textContent = status.replaceAll('-', ' ') + '...';
|
||||||
|
if (outOfStates.includes(state)) text.textContent += ` (${current}/${total})`;
|
||||||
text.textContent = status.replaceAll('-', ' ');
|
|
||||||
if (current) text.textContent += ` (${current}/${total})`;
|
|
||||||
|
|
||||||
if (progress) {
|
if (progress) {
|
||||||
barContainer.style.display = 'block';
|
barContainer.style.visibility = 'visible';
|
||||||
barFill.style.display = 'block';
|
barFill.style.visibility = 'visible';
|
||||||
|
|
||||||
barFill.style.width = 80 * (progress / 100) + '%';
|
barFill.style.width = 80 * (progress / 100) + '%';
|
||||||
} else {
|
} else {
|
||||||
|
@ -83,8 +107,4 @@
|
||||||
barFill.style.display = '';
|
barFill.style.display = '';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
DiscordSplash.onQuoteUpdate((e) => {
|
|
||||||
console.log('onQuoteUpdate', e);
|
|
||||||
})
|
|
||||||
</script>
|
</script>
|
Loading…
Add table
Add a link
Reference in a new issue