不使用javascript,使用CSS和HTML实现鼠标经过图片变换图片效果。演示地址。代码:html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
不用javascript,使用CSS和HTML实现鼠标经过图片变换图片效果.main{
width:332px;
height:113px;
border:1px solid gray;
}
.content{
width:332px;
height:113px;
border:1px solid gray;
background-image:url(images/1.jpg);
background-repeat: no-repeat;
}
.content:hover{
background-image:url(images/2.jpg);
}
a{
text-decoration:none;
}
相关推荐: