You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
width:109px; /* Gives the li the same height and width as the first frame */
height:46px;
background:url('http://www.szkolazdusza.com/images/menu-item01-bkg.jpg') top left no-repeat;
text-indent:-10000px; /*Hides the menu item text way to the left*/
}
li span { /* Places the span of the same dimensions right on top of the li */
display:block;
width:109px;
height:46px;
position:absolute;
top:0;
left:0;
background:url("http://www.szkolazdusza.com/images/menu-item01-bkg.jpg") 0 -414px no-repeat; /* Offsets the image 414px to the top, so it's actually the last frame in the image */
z-index:1;
opacity:0; /* Makes it transparent until you hover over it */
filter:alpha(opacity = 0); /* For IE compatibility; it doesn't support opacity */
-webkit-transition: opacity 0.25s linear; /* Tells WebKit how you want the transition */
}
li span:hover { /* Makes the span visible when you hover it, animated according to the -webkit-transition property */