makes ANY icon or image spin when you mouse over it
you will also need spinny basic for team icons here: https://userstyles.world/style/8105
spinny dx by mynotaurus
Details
Authormynotaurus
LicenseNo License
Categoryblaseball
Created
Updated
Size1.6 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name spinny dx
@namespace github.com/openstyles/stylus
@version 1.0.1
@description A new userstyle
@author Myno
==/UserStyle== */
@-moz-document domain("blaseball.com") {
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* TO BE USED WITH https://userstyles.world/style/8105 */
img:not(img[alt="๐ฌ"], img[alt="๐ฎ"], img[alt="๐น"], img[alt="๐ฃ"], img[alt="๐ฑ"], img[alt="๐"], img[alt="๐ฆ"], img[alt="๐"], img[alt="๐ค"], img[alt="๐ฅง"], img[alt="๐
"], img[alt="๐ฑ"], img[alt="๐ "], img[alt="๐ต"], img[alt="๐"], img[alt="๐ฅฉ"], img[alt="๐ฅ"], img[alt="๐"], img[alt="๐ธ"], img[alt="โจ"], img[alt="๐"], img[alt="๐"], img[alt="๐"], img[alt="๐"],.playtab__cover-cta-icon > img), svg:not(.playtab__cover-cta-icon > svg), .decree__icon {
animation: spin 5s linear infinite;
animation-play-state: paused;
}
img:not(img[alt="๐ฌ"], img[alt="๐ฎ"], img[alt="๐น"], img[alt="๐ฃ"], img[alt="๐ฑ"], img[alt="๐"], img[alt="๐ฆ"], img[alt="๐"], img[alt="๐ค"], img[alt="๐ฅง"], img[alt="๐
"], img[alt="๐ฑ"], img[alt="๐ "], img[alt="๐ต"], img[alt="๐"], img[alt="๐ฅฉ"], img[alt="๐ฅ"], img[alt="๐"], img[alt="๐ธ"], img[alt="โจ"], img[alt="๐"], img[alt="๐"], img[alt="๐"], img[alt="๐"],.playtab__cover-cta-icon > img):hover, svg:not(.playtab__cover-cta-icon > svg):hover, .decree__icon:hover{
animation-play-state: running;
}
}