ms-transform icon indicating copy to clipboard operation
ms-transform copied to clipboard

Can this be updated for infinity animation?

Open FloatBird opened this issue 11 years ago • 1 comments

Something like this:

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.rotate {
    behavior: url(ms-transform.htc);
    -ms-animation: rotate 800ms linear infinite;
}

FloatBird avatar Sep 02 '14 06:09 FloatBird

It's a good idea. However older versions of Internet Explorer (<IE10) are well forgotten and I haven't spent any extra effort on this project after that.

hakoniemi avatar Sep 04 '14 20:09 hakoniemi