Day26过渡属性

image

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>过渡属性</title>
    <style>
        img{
            height: 200px;
            width: 150px;
            transition: all 2s;
        }
        img:hover{
            width: 500px;
            height: 400px;
        }
    </style>
</head>
<body>
    <img src="./day08/images/huawei.jpg" alt="">
</body>
</html>

image

posted @ 2025-11-27 22:58  冰涿  阅读(3)  评论(0)    收藏  举报