Pure CSS Circle Timer

by secretgspot

HTML

<div class="timer">
    <div class="mask"></div>
</div>

CSS

.timer {
    background: -webkit-linear-gradient(left, red 50%, #000 50%); /* Foreground color, Background colour */
    border-radius: 100%;
    height: 32px; /* Height and width */
    position: relative;
    width: 32px; /* Height and width */
    -webkit-animation: time 13s steps(13, start) infinite; /* Animation time and number of steps */
}
.mask {
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
    -webkit-animation: mask 13s steps(13, start) infinite; /* Animation time and number of steps (halved) */
    -webkit-transform-origin: 100% 50%;
}
@-webkit-keyframes time {
    100% { 
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes mask {
    0% {
        background: #000; /* Background colour */
        -webkit-transform: rotate(0deg);
    }
    50% {
        background: #000; /* Background colour */
        -webkit-transform: rotate(-180deg);
    }
    50.01% {
        background: red; /* Foreground colour */
        -webkit-transform: rotate(0deg);
    }
    100% {
        background: red; /* Foreground colour */
        -webkit-transform: rotate(-180deg);
    }
}