Custom Property Hover Effect

Variables registered with @property can animate on hover.

Preview

Code

<style>
@property --radius{
syntax: "<length>";
inherits: false;
initial-value: 0px;
}

.box{
width:120px;
height:80px;
background:#2563eb;
border-radius:var(--radius);
transition:--radius .3s;
}

.box:hover{
--radius:30px;
}
</style>

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

More CSS @property Examples (8)