everytime the screensize changes i want to change a keyframe value:
Css:
.wave {
animation: wave 2s cubic-bezier(0.53, 0.63, 0.45, 0.36) infinite;
}
@keyframes wave {
0% {
margin-left: 0;
}
100% {
margin-left: -100px; /*<<<<i want to freely change this value*/
}
}
Is there a jQuery option to change "margin-left: -100px;" to "margin-left: -200px" ?