<!DOCTYPE html>
<html>
<head>
<title>CSS过渡实现背景位置渐变</title>
<style>
.box {
width: 200px;
height: 200px;
background-color: red;
transition: background-position 1s;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
.box {
width: 200px;
height: 200px;
background-color: red;
transition: background-position 1s;
}
.box:hover {
background-position: -100px -100px;
}
本文为翻滚的胖子原创文章,转载无需和我联系,但请注明来自猿教程iskeys.com