Alternatywnie, jeśli nie chcesz stopniowego przechodzenia między pokazem a ukrywaniem (np. Migający kursor tekstowy), możesz użyć czegoś takiego:
/* Also use prefixes with @keyframes and animation to support current browsers */
@keyframes blinker {
from { visibility: visible }
to { visibility: hidden }
/* Alternatively you can do this:
0% { visibility: visible; }
50% { visibility: hidden; }
100% { visibility: visible; }
if you don't want to use `alternate` */
}
.cursor {
animation: blinker steps(1) 500ms infinite alternate;
}
Każdy 1s
.cursor
przejdzie od visible
do hidden
.
Jeśli animacja CSS nie jest obsługiwana (np. W niektórych wersjach Safari), możesz wrócić do tego prostego interwału JS:
(function(){
var show = 'visible'; // state var toggled by interval
var time = 500; // milliseconds between each interval
setInterval(function() {
// Toggle our visible state on each interval
show = (show === 'hidden') ? 'visible' : 'hidden';
// Get the cursor elements
var cursors = document.getElementsByClassName('cursor');
// We could do this outside the interval callback,
// but then it wouldn't be kept in sync with the DOM
// Loop through the cursor elements and update them to the current state
for (var i = 0; i < cursors.length; i++) {
cursors[i].style.visibility = show;
}
}, time);
})()
Ten prosty JavaScript jest w rzeczywistości bardzo szybki i w wielu przypadkach może nawet być lepszym domyślnym niż CSS. Warto zauważyć, że wiele wywołań DOM powoduje spowolnienie animacji JS (np. $ .Animate () JQuery'ego).
Ma również drugą zaletę, że jeśli dodasz .cursor
elementy później, będą one animowane dokładnie w tym samym czasie, co inne .cursor
s, ponieważ stan jest współdzielony, o ile wiem, jest to niemożliwe z CSS.