美文网首页
前端-第九天-作业

前端-第九天-作业

作者: 看三小 | 来源:发表于2018-11-04 18:53 被阅读21次

<!DOCTYPE html>
<html lang="en"><head>
<meta charset="UTF-8">
<title>CSS3过渡动画</title>
<style type="text/css">
.box{
width: 100px;
height: 100px;
background-color: gold;

        transition: all 500ms ease;
    }
    .box:hover{
        width: 500px;
        height: 300px;
        background-color: red;
        border-radius: 50px;
    }
</style>

</head>
<body>
<div class="box"></div>

</body></html>

相关文章

网友评论

      本文标题:前端-第九天-作业

      本文链接:https://www.haomeiwen.com/subject/cyldxqtx.html