Smart Animate is a great feature for designer but how is it translated when Dev receives this? I am able to find the following code for an on/off toggle component:
// On click
// Change to: "State=On";
// Animate: Smart animate;
animation-timing-function: cubic-bezier(0.45, 1.45, 0.8, 1);
animation-duration: 300ms;
// On click
// Change to: "State=Off";
// Animate: Smart animate;
animation-timing-function: cubic-bezier(0.45, 1.45, 0.8, 1);
animation-duration: 300ms;
When developer see the line “Animate: Smart animate;”, will this make sense for them when they write in code?