ul { width:300px; height:300px; margin:0px auto; padding:0px; overflow:hidden; background:transparent url(/study/2006_12_25/2006122516414543849.jpg)} li {list-style-type:none; width:100px; height:100px; float:left} li a { display:block; width:100px; height:100px; text-decoration:none; background:transparent url(http://www.jb51.net/upload/20072795511179.jpg) no-repeat 500px 500px; } a#item1:hover {background-position: 0 0; } a#item2:hover {background-position: -100px 0;} a#item3:hover {background-position: -200px 0;} a#item4:hover {background-position: 0 -100px;} a#item5:hover {background-position: -100px -100px;} a#item6:hover {background-position: -200px -100px;} a#item7:hover {background-position: 0 -200px;} a#item8:hover {background-position: -100px -200px;} a#item9:hover {background-position: -200px -200px;} [Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] 我们先看看代码 <BR>ul { width:300px; height:300px; margin:0px auto; padding:0px; overflow:hidden; <FONT color=#ff0000>background:transparent url(/study/2006_12_25/2006122516414543849.jpg)}<BR>li {list-style-type:none; width:100px; height:100px; float:left}<BR>li a { display:block; width:100px; height:100px; text-decoration:none; <BR> <FONT color=#ff0000>background:transparent url(/study/2006_12_25/2006122516411012132.jpg) no-repeat 500px 500px; }<BR>a#item1:hover {background-position: 0 0; }<BR>a#item2:hover {background-position: -100px 0;}<BR>a#item3:hover {background-position: -200px 0;}<BR>a#item4:hover {background-position: 0 -100px;}<BR>a#item5:hover {background-position: -100px -100px;}<BR>a#item6:hover {background-position: -200px -100px;}<BR>a#item7:hover {background-position: 0 -200px;}<BR>a#item8:hover {background-position: -100px -200px;}<BR>a#item9:hover {background-position: -200px -200px;}<BR> 是不是非常简单,而我们所用到的图片也仅仅是下面的2张而已 现在我们来分析 background-position 的用法:A元素一开始的时候背景位置设置成 background-position:500px 500px,而它的大小仅只有100px*100px而已,所以A标签下的所有背景都超过了可视范围无法显示,我们一开始看见的黑白照片就是UL的背景图象。接着当鼠标移动到A元素上的时候,再根据每个A元素所处的位置来分别为他们设置背景的移动大小,这样就形成上面的黑白图片交替效果。