Number Custom Property
Preview
Code
<style>
@property --scale{
syntax: "<number>";
inherits: false;
initial-value: 1;
}
.box{
width:100px;
height:60px;
background:#9333ea;
transform:scale(var(--scale));
animation:growth 1.5s infinite alternate;
}
@keyframes growth{
from{--scale:1;}
to{--scale:1.4;}
}
</style>
<div class="box"></div>