<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 300px;
height: 150px;
margin: 100px auto;
border-radius: 10px;
background: url(paopao.png) no-repeat left top, url(paopao.png) no-repeat right bottom;
background-color: orange;
transition: all 1s;
}
.box:hover {
background-position: left bottom, right top;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

