div{
    background: blue;
    transition:background 1s, width 1s;
    width:200px;
    height:200px;
    border-radius: 100px;
}

div:hover{
    background: black;
    width:100%;
}