Hier ist ein Teil meines CSS Sprites CodeWie Übergang Effekt auf die CSS-Sprites schweben
#IconSet a {
width: 36px;
height: 36px;
display: inline-block;
}
#DeviantArtIcon {
border-width: 0px;
border-style: none;
background-image: url(http://static.monstermmorpg.com/images/csssprites/SocialIcons.png);
background-color: transparent;
background-repeat: repeat-x;
background-position: -144px -0px;
width: 36px;
height: 36px;
}
#DeviantArtIcon:hover {
border-width: 0px;
border-style: none;
background-image: url(http://static.monstermmorpg.com/images/csssprites/SocialIcons.png);
background-color: transparent;
background-repeat: repeat-x;
background-position: -144px -36px;
width: 36px;
height: 36px;
}
<a id="DeviantArtIcon" href="http://monstermmorpg.deviantart.com" rel="nofollow" target="_blank" title="Monster MMORPG On Deviant Art - Please Watch Our Channel"></a>
Jetzt machen, wenn dieses Symbol schwebte ich will Übergangseffekt haben. Wie kann ich das machen ?
Ich habe versucht, hier aber kein Glück
CSS Fade Between Background Images on Hover
was Ihr Endziel auf die Animation? willst du, dass es eingeblendet wird oder nach oben geht? gerade jetzt, wenn Sie einen Übergangseffekt in CSS hinzufügen, kann ich sehen, dass es das Symbol in den aktiven Zustand schieben wird. –