Files
2024-09-27 02:06:13 +08:00

47 lines
999 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body, ul {
margin: 0;
padding: 0;
}
.main {
width: 520px;
height: 280px;
overflow: hidden;
}
li {
list-style: none;
float: left;
}
.listimg {
width: 2000px;
perspective: 1200px;
transform-style: preserve-3d;
backface-visibility: hidden;
}
li:nth-child(1) {
transform:rotateY(-23deg);
}
li:nth-child(2) {
transform:rotateY(43deg);
}
</style>
</head>
<body>
<div class="main">
<ul class="listimg">
<li><img src="./img/1.jpg" alt=""></li>
<li><img src="./img/3.jpg" alt=""></li>
</ul>
</div>
</body>
</html>