I am playing around with paintWorklet. I wonder if it is possible do transition on the custom property?
.hello {
--chessBoardSize: 20;
background-image: paint(helloWorld);
transition: 1s;
}
.hello:hover {
--chessBoardSize: 30;
}
The hover works, but it just change --chessBoardSize
from 20 to 30 without any smooth transition.