Is there a way to dynamically change the CSS values based on the server's response? I attempted to use inline expressions, but unfortunately, it did not yield the desired outcome.
@keyframes loading-1 {
0% {
-webkit-transform: rotate(<%=cpuRightDeg %>);
transform: rotate(<%=cpuRightDeg %>);
}
100% {
-webkit-transform: rotate(<%=cpuRightDeg %>);
transform: rotate(<%=cpuRightDeg %>);
}
}