Do you have an idea to "transfer" this CSS Code to Javascript (maybe jQuery)?
html { background-color: #B94FC1; } html:before, html:after { content: ""; height: 100%; width: 100%; position: fixed; z-index: -6; } html:before { background-image: linear-gradient(to bottom, #5856D6 0%, #C644FC 100%); animation: fgradient 5s linear 0s infinite alternate; } html:after { background-image: linear-gradient(to bottom, #C643FC 0%, #FF5F37 100%); animation: sgradient 5s linear 0s infinite alternate; } @keyframes fgradient { 0% { opacity: 1; } 100% { opacity: 0; } } @keyframes sgradient { 0% { opacity: 0; } 100% { opacity: 1; } }
I want a transition from a gradient to an other. My own code works well, but I want try the same with Javascript ;)
Hope somebody can help me.