NeoCoil

Gradient background animation

by RevConcept

CSS

body {
    position: relative;
    background: linear-gradient(135deg,rgba(0,2,53,1) 100%);
    overflow: hidden;
    background-size: 200% 100% !important;
    -webkit-animation: move 10s ease infinite;
    animation: move 10s ease infinite;
}

@-webkit-keyframes move {
    0% {
        background-position: 0 0
    }
    50% {
        background-position: 100% 0
    }
    100% {
        background-position: 0 0
    }
}