This is for skinning EJukebox under Windows 8 Release Preview and Win7 with IE10
in colors.ini
[IEStandardsMode]
Version=10
in artistlist.dis:
body { text-shadow: 0px 0px 4px #00FF00; }
.Artistrow:hover,.Artistrow2:hover {
zoom: 122%;
transition: all 0.2s ease-out;
}
@keyframes turnit{
from{
transform: rotate(0deg);
}
to{
transform: rotate(-364deg);
}
}
.ArtistLetter {
animation-name: turnit;
animation-iteration-count: infinite;
animation-duration: 30s;
animation-timing-function: linear; }
Just an example... this code adds a green shadow behind all text, makes the text animate on mouse over and creates a never ending looping animation
that rotates the artist letter element.