10.11 形变案例

41 阅读1分钟
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        div{
            width: 200px;
            height: 200px;
            margin: 30px auto;
            transition: transform 2s linear;
            perspective: 500px;
        }
        div:hover{
            transform: rotateX(45deg);
        }
    </style>
</head>
<body>
    <div>
        <img width="150px" src="../images/pk.png" alt="">
        
    </div>
</body>
</html>