css一段近大远小效果代码
2019-08-02 本文已影响0人
nickNic
屏幕快照 2019-08-02 下午2.35.50.png
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
padding: 0px;
margin: 0px;
}
div{
width: 300px;
height: 500px;
background: red;
margin: 100px auto;
text-align: center;
perspective: 500px;
}
span{
width: 300px;
height: 500px;
background: yellow;
display: inline-block;
transition: transform,0.8s;
transform-origin: center bottom;
}
span:hover{
transform: rotateX(60deg);
}
</style>
</head>
<body>
<div>
<span>
</span>
</div>
</body>
</html>