#some more silly hover animations
1 messages ยท Page 1 of 1 (latest)
speeen
oooo
I should ping myself here and leave it unread so I remember to throw it in tomorrow
@rich ruin
you're fun, keep it up
can i have theme link?
add these to the midnight source my goat
its midnight
Holy peak
done
goat 
Please don't unscrew the chatbox.
oh you can make them spin so so much
i actually wanted it to spin less (180 deg ) at first, but only spinning halfway looks weird on the emoji button
now change the time to 3600s
btw, if the settings button has a slight offset, change it to this:
.button__4f306[aria-label="User Settings"] > div
do you have to enter the language in which you have it?
or wait... i'll do something
i found, you can also use .button__4f306:nth-child(3) but idk if its work for you ๐คทโโ๏ธ
this doesn't work for people who have the game activity plugin
you would have to make it nth-child(4)
:last-child exists
or .container_ca50b9:has([aria-label$="Game Activity"]) .button__4f306:nth-child(4), .container_ca50b9:not(:has([aria-label$="Game Activity"])) .button__4f306:nth-child(3) 

oh yeah forgot about that
> div horror
WAIT SINCE WHEN DID MY EMOTES SPIN
its the code
did not notice
if only i could just have them always slowly spinning
well im sure i could
but i do not knowhow i would do that
if u mean the emoji button
.emojiButton__30ec7 .contents_fb6220 {
animation: spin 2s infinite linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}```
Any idea how to fix this, where the whole background moves and not just the actual icon itself
https://i.imgur.com/6NbfEHv.gif
check the snippet, you need the first part to make the background of the icon round
otherwise it'll look like that
so this is what I have
//Settings
button.button__4f306 /* make user panel buttons round */ {
border-radius: 50%;
}
.button__4f306:last-child /* settings button */,
.attachButton_b1db83 .attachButtonInner__3ce2b /* upload button */,
.emojiButton__30ec7 .contents_fb6220 /* emoji button */,
.closeButton__34341 /* settings exit button */ {
transition: transform 1s ease;
}
.button__4f306:last-child:hover,
.attachButton_b1db83:hover .attachButtonInner__3ce2b,
.emojiButton__30ec7:hover .contents_fb6220,
.closeButton__34341:hover {
transform: rotate(360deg);
}```
Would I need to change the _b1db83 to the background color? @quaint abyss
on likne 7
sorry the one on like 6
try this updated version
/* spin hover animations */
button.button__4f306 /* make user panel buttons round */ {
border-radius: 50%;
}
.button__4f306:last-child .contents_fb6220 /* settings button */,
.attachButton_b1db83 .attachButtonInner__3ce2b /* upload button */,
.emojiButton__30ec7 .contents_fb6220 /* emoji button */,
.closeButton__34341 /* settings exit button */,
.contents_fb6220 > .closeIcon__5bab9 /* modal close */ {
transition: transform var(--icon-spin-transition);
}
.button__4f306:last-child:hover .contents_fb6220,
.attachButton_b1db83:hover .attachButtonInner__3ce2b,
.emojiButton__30ec7:hover .contents_fb6220,
.closeButton__34341:hover,
.contents_fb6220:hover > .closeIcon__5bab9 {
transform: rotate(360deg);
}```
no more hover rotate 
?
just doesnt work at all?
yeah lol just doesn't work
adding that code also however changed the rotate of the icon background to a circle
strange
do you have any other themes?
oh shit i forgot there was a variable in there
/* spin hover animations */
button.button__4f306 /* make user panel buttons round */ {
border-radius: 50%;
}
.button__4f306:last-child .contents_fb6220 /* settings button */,
.attachButton_b1db83 .attachButtonInner__3ce2b /* upload button */,
.emojiButton__30ec7 .contents_fb6220 /* emoji button */,
.closeButton__34341 /* settings exit button */,
.contents_fb6220 > .closeIcon__5bab9 /* modal close */ {
transition: transform 1s ease;
}
.button__4f306:last-child:hover .contents_fb6220,
.attachButton_b1db83:hover .attachButtonInner__3ce2b,
.emojiButton__30ec7:hover .contents_fb6220,
.closeButton__34341:hover,
.contents_fb6220:hover > .closeIcon__5bab9 {
transform: rotate(360deg);
}```
if you dont like the round button background then remove this part, it should still work the same
button.button__4f306 /* make user panel buttons round */ {
border-radius: 50%;
}
does this still work as intended? for me the emoji icon is.. different and keeps going invisible ._.
works for me
hmm.. wierd..
its a square thing when not hovering, turns to a smiley that rotates(as intended) when hovering and then it just.. goes invisible ._.
https://host.moonmoon.tech/u/NXH8XW.png
https://host.moonmoon.tech/u/3yLNAK.png
https://host.moonmoon.tech/u/3FhItH.png
ah shit.. it worked fine earlier.. but it seems its my main theme.. which is "zelk"
i think i managed to fix the issues it had as it wasn't being updated..
you should use midnight :)
but yeah zelk is kinda dead
which is unfortunate because it was one of the only good themes
yeah.. i have the zelk theme for my spotify aswell ๐
i'll look at midnight ๐ค (i just realized it's your theme
)
i've tried, as much as i could, to "fix" the issues with zelk :x
you could probably set up zelk's colors in midnight
yeah.. the main issue i have is how darkened everything is.. but i'll look into it and customize to my preference ๐
oh dear yeah it brokey
canary got a class update, still works on stable for me
i doubt they'll push this one to stable
Updated code from #๐จ-css-snippets message since the button labels were changed.```button.button_ae40a4 /* make user panel buttons round / {
border-radius: 50%;
}
.button_ae40a4:last-child / settings button /,
.attachButton__56f98 .attachButtonInner__84c26 / upload button /,
.emojiButtonNormal__5f64f / emoji button /,
.closeButton__8177f / settings exit button */ {
transition: transform 1s ease;
}
.button_ae40a4:last-child:hover,
.attachButton__56f98:hover .attachButtonInner__84c26,
.emojiButtonNormal__5f64f:hover .spriteContainer__732c7,
.closeButton__8177f:hover {
transform: rotate(360deg);
}
Credits to: @quaint abyss
If anyone also had this problem, please update your codes.
emoji still broken for me but its not a big deal
/*
Settings and Upload Button Spin
*/
button.button_ae40a4 /* make user panel buttons round */ {
border-radius: 50%;
}
.button_ae40a4:last-child /* settings button */,
.attachButton__56f98 .attachButtonInner__84c26 /* upload button */,
.emojiButton_b63c38 .contents__322f4 /* emoji button */,
.closeButton__8177f /* settings exit button */ {
transition: transform 1s ease;
}
.button_ae40a4:last-child:hover,
.attachButton__56f98:hover .attachButtonInner__84c26,
.emojiButton_b63c38:hover .contents__322f4,
.closeButton__8177f:hover {
transform: rotate(360deg);
}
this version should be fully functional
maybe you should remove it from the settings button because discord has an animation on it by default now
so it just spins extra fast
i have to remove it but
which is the settings button lol
