动画(hover)

2016-12-15  本文已影响0人  智多牛
<div id="rect"></div>

<style>

    #rect
    {
        width : 100px;
        height: 100px;
        background-color: orangered;
        
        transition: width 0.5s;
    }
    
    #rect:hover
    {
        width: 100%;
    }

</style>
上一篇 下一篇

猜你喜欢

热点阅读