动画(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>