我想只用CSS在精灵图像的’background-position’之间淡出.我找到了很多o教程,但我没有找到像这样简单的东西: !doctype htmlhtmlheadmeta charset="utf-8"titleCSS3 - Fade between 'background-position' of a spri
<!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS3 - Fade between 'background-position' of a sprite image</title> <style type="text/css"> div{ width: 120px; height: 60px; background-image: url('sprite.jpg'); background-repeat: no-repeat; background-position: 0 0; } div:hover{ background-position: 0 -60px; } </style> </head> <body> <div></div> </html>
谢谢.
无论如何,我找到了答案,谢谢.<!doctype html> <html> <head> <meta charset="utf-8"> <title>CSS3 - Fade between 'background-position' of a sprite image</title> <style type="text/css"> #button{ float: left; background-image: url('sprite.jpg'); background-position: 0 -60px; background-repeat: no-repeat; width: 120px; height: 60px; } #button a{ background-image: url('sprite.jpg'); background-position: 0 0; background-repeat: no-repeat; width: 120px; height: 60px; display: block; text-indent: -9999px; transition: opacity 0.3s ease-in-out; -moz-transition: opacity 0.3s ease-in-out; -webkit-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; } #button a:hover, #button a:focus{ opacity: 0; } </style> </head> <body> <div id="button"><a href="#"></a></div> </html>