鼠标放上去图片会放大

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        div {
            300px;
            height: 300px;
            border:1px solid #000;
            margin:50px auto;
            overflow:hidden;

        }
        div img {
            cursor:pointer;
            transition:all .6s;
        }
       
       div img:hover {
           transform:scale(1.4);
       }

       
    </style>
</head>
<body>
    <div>
        <img src="bingbing.jpg" alt="">
    </div>
</body>
</html>

原文地址:https://www.cnblogs.com/agansj/p/7460895.html