7 lines
170 B
JavaScript
7 lines
170 B
JavaScript
// Blink elements
|
|
[].forEach.call(document.getElementsByClassName("blink"), function (elem) {
|
|
setInterval(function () {
|
|
elem.classList.toggle("invert");
|
|
}, 200);
|
|
});
|