]> git.sesse.net Git - ultimatescore/blobdiff - carousel.js
Add a third clock.
[ultimatescore] / carousel.js
index aa195c603fe54b3446e82e6c8d1be558a1e6b333..7066ba4cb0e336707e9bc93abd3d81f9d6db3f86 100644 (file)
@@ -752,3 +752,17 @@ function hidematch2()
        document.getElementById('scorebug2').style = css;
        document.getElementById('clockbug2').style = css;
 }
+
+function showmatch3()
+{
+       let css = "-webkit-animation: fade-in 1.0s ease; -webkit-animation-fill-mode: both;";
+       document.getElementById('scorebug3').style = css;
+       document.getElementById('clockbug3').style = css;
+}
+
+function hidematch3()
+{
+       let css = "-webkit-animation: fade-out 1.0s ease; -webkit-animation-fill-mode: both;";
+       document.getElementById('scorebug3').style = css;
+       document.getElementById('clockbug3').style = css;
+}