Song durations!

This commit is contained in:
Bingus_Violet 2024-01-25 22:24:09 -06:00
parent 2c620209ad
commit a493263f72
3 changed files with 64 additions and 10 deletions

View file

@ -170,15 +170,37 @@ function pageUpdate() {
return html return html
} }
if (activity.type == 2) { if (activity.type == 2) {
addedHTML += ` var timeLeft = Math.round((activity.timestamps.end - Date.now()) / 1000)
<div class="chip activity col-md-6 testing"> var currentPercent = (Date.now() - activity.timestamps.start) / (activity.timestamps.end - activity.timestamps.start) * 100
<img src="${getThumbor()}/256x256/${get_img()}" title="${activity.assets.large_text || activity.assets.small_text}"> addedHTML += `
<p> <div class="chip activity col-md-6 testing">
Listening to <span style="color: limegreen;">${activity.name}</span> <img src="${getThumbor()}/128x128/${get_img()}" title="${activity.assets.large_text || activity.assets.small_text}">
<br> Song: ${activity.details || " "} <p>
${songStats()} Listening to <span style="color: limegreen;">${activity.name}</span>
</p> <br> Song: ${activity.details || " "}
${songStats()}
<br>
<span class="lengthBar lengthBar${index}"><span></span></span>
</p>
</div> </div>
<style>
.lengthBar${index} > span {
animation-name: songSlider${index};
animation-duration: ${timeLeft}s;
animation-timing-function: linear;
}
@keyframes songSlider${index} {
0% {
width: ${currentPercent}%;
}
100% {
width: 100%;
}
}
</style>
` `
} else if (activity.type == 0) { } else if (activity.type == 0) {
var time = activity.created_at var time = activity.created_at
@ -284,5 +306,4 @@ app.use((req, res, next) => {
<h1>404</h1> <h1>404</h1>
<p>Uh oh... I think your lost? There's nothing here :P</p> <p>Uh oh... I think your lost? There's nothing here :P</p>
`) `)
}) })

View file

@ -58,6 +58,19 @@
{MASTODON_FEED} {MASTODON_FEED}
{SEASONAL_EFFECT} {SEASONAL_EFFECT}
<div class="chip activity col-md-6 testing">
<img src="https://thumbor-production-0e82.up.railway.app/unsafe/256x256/https://i.scdn.co/image/ab67616d0000b27364fa1bda999f4fbd2b7c4bb7" title="Petals to Thorns">
<p>
Listening to <span style="color: limegreen;">Spotify</span>
<br> Song: Here With Me
<br> Album: Petals to Thorns
<br> Artist: d4vd
<br>
<span class="lengthBar"><span></span></span>
</p>
</div>
</div> </div>
</body> </body>
</html> </html>

View file

@ -271,6 +271,26 @@ hr {
border-radius: 5px; border-radius: 5px;
} }
.lengthBar {
background-color: rgb(50, 40, 60);
display: inline-block;
width: 80%;
height: 10px;
padding: 0;
overflow: hidden;
border-radius: 5px;
}
.lengthBar > span {
margin: 0;
padding: 0;
width: 100%;
background-color: white;
height: 20px;
display: inline-block;
position: relative;
}
@keyframes fade-in { @keyframes fade-in {
0% { 0% {
opacity: 0; opacity: 0;