10.3 文字过渡效果

47 阅读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{
            height: 200px;
            background-color: pink;
            text-align: center;
            line-height: 200px;
            transition: font-size 2s ease-out,background-color 2s linear;
        }
        div:hover{
            font-size: 58px;
            background-color: skyblue;
        }
    </style>
</head>
<body>
    <div>中北大学软件学院</div>
</body>
</html>