美文网首页
2019-06-01图片变化

2019-06-01图片变化

作者: X夜访吸血鬼X | 来源:发表于2019-06-01 20:09 被阅读0次

实现鼠标悬停图片变化效果:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>亚马逊</title>
<style type="text/css">
.a{
width: 42px;
margin: 0 auto;
}
.a1{
position: absolute;
width: 42px;
height: 30px;
background-image: url("./images/amazon-sprite_.png");
background-repeat: no-repeat;
background-position: -8px -338px;
}
.a1:hover{
background-position: -58px -338px
}
</style>
</head>
<body>
<div class="a">
<a href="#" class="a1"></a>
</div>
</body>
</html>

相关文章

网友评论

      本文标题:2019-06-01图片变化

      本文链接:https://www.haomeiwen.com/subject/qwzatctx.html