hftf / coords

2 stars 1 forks source link

Suggestions for minor enhancements #60

Open hftf opened 10 years ago

hftf commented 10 years ago

Opinions?

MattiasBuelens commented 10 years ago
hftf commented 10 years ago
MattiasBuelens commented 10 years ago

Not sure what kind of animations you are using, but my computer has no problem with this:

#click {
    animation: blink 1s infinite;
}
@keyframes blink {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

If we want something fancier, we could always roll our own custom animation with requestAnimationFrame to do something with the canvas.