I put some gradients in an animation but it didn't work, why? (blah blah blah, to be able to post this question)
EDIT:
CSS
        @keyframes sample {
            0% {background: -moz-linear-gradient(#000,#fff)}
            100% {background: -moz-linear-gradient(#fff,#000)}
        }
        button {
            animation: sample 1s;
            -moz-animation: sample 1s;
        }
