<!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: 250px;
height: 250px;
background-color: green;
transition: all 1s;
}
.box:hover {
transform: translateX(300px);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

<!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: 250px;
height: 250px;
background-color: green;
transition: all 1s;
}
.box:hover {
transform: translateY(300px);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>

<!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>
body {
perspective: 500px;
}
.box {
width: 250px;
height: 250px;
background-color: green;
transition: all 1s;
margin: 200px auto;
}
.box:hover {
transform: translateZ(200px);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
