#Reactions hover, this is excluding super
1 messages ยท Page 1 of 1 (latest)
Yay, I can get even less fps from my discord install ๐
we love transform snippets!
do transform snippets slow down the client?
By 0.05 fps
Depending on how many and what snippets you have
This is is the 0.005 fps drop snippet
This really shouldn't slow down the client unless you're doing it with hundreds of them and your cpu is from the dinosaur ages
/* Reactions Hover */
[class^=reaction_]:not(:has(.burstGlow_ec6b19)) .emoji {
transition: transform 0.5s ease;
}
[class^=reaction_]:not(:has(.burstGlow_ec6b19)):hover .emoji {
transform: translateY(-10px) scale(1.5);
}
[class^=reaction_]:not(:has(.burstGlow_ec6b19)):active .emoji {
transition: transform 0.1s ease;
transform: translateY(-10px) scale(2);
}```