templeos-info/public/script/templeos.js

7 lines
170 B
JavaScript
Raw Normal View History

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