Basic CSS Transition
Preview
Code
<style>
.box{
width:120px;
height:80px;
background:#60a5fa;
transition:background 0.3s;
}
.box:hover{
background:#2563eb;
}
</style>
<div class="box"></div>
<style>
.box{
width:120px;
height:80px;
background:#60a5fa;
transition:background 0.3s;
}
.box:hover{
background:#2563eb;
}
</style>
<div class="box"></div>