mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 21:17:58 +01:00
add masterpiece video :3
This commit is contained in:
parent
34c7b787e7
commit
b765e8eb06
1 changed files with 53 additions and 42 deletions
|
@ -678,6 +678,13 @@ background-color: #0000;
|
|||
border: 2px solid red;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.rainbow-gradient {
|
||||
background: linear-gradient(to right, red, orange, yellow, green, blue, indigo, violet);
|
||||
-webkit-background-clip: text;
|
||||
color: transparent;
|
||||
}
|
||||
|
||||
</style>
|
||||
<noscript>
|
||||
<style>
|
||||
|
@ -1691,7 +1698,9 @@ WIP! </a>
|
|||
const userScore = (parseFloat(likePercentage) - parseFloat(dislikePercentage) / 2).toFixed(2);
|
||||
|
||||
const getUserScoreLabel = (score) => {
|
||||
if (score >= 80) {
|
||||
if (score >= 98) {
|
||||
return 'Masterpiece Video';
|
||||
} else if (score >= 80) {
|
||||
return 'Overwhelmingly Positive';
|
||||
} else if (score >= 60) {
|
||||
return 'Positive';
|
||||
|
@ -1706,13 +1715,15 @@ WIP! </a>
|
|||
|
||||
const userScoreLabel = getUserScoreLabel(userScore);
|
||||
const userScoreColor = userScore >= 80 ? 'green' : userScore >= 50 ? 'orange' : 'red';
|
||||
|
||||
const userScoreClass = userScore >= 98.00 ? 'rainbow-gradient' : '';
|
||||
%>
|
||||
|
||||
|
||||
|
||||
<br><span style="color: <%= likeColor %>;"><%= likePercentage %>%</span> of the users lieked the video!! <br>
|
||||
<span style="color: <%= dislikeColor %>;"><%= dislikePercentage %>%</span> of the users dislieked the video!! <br>
|
||||
User score: <span style="color: <%= userScoreColor %>;"><%= userScore %></span>- <%= userScoreLabel %><br><br>
|
||||
User score: <span class="<%= userScoreClass %>" style="color: <%= userScoreColor %>;"><%= userScore %></span>- <%= userScoreLabel %><br><br>
|
||||
RYD date created : <%=engagement.dateCreated.toLocaleString()%> <br>
|
||||
<a href="https://returnyoutubedislikeapi.com/votes?videoId=<%=inv_vid.videoId%>">See in json</a>
|
||||
|
||||
|
|
Loading…
Reference in a new issue