X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=carousel.js;h=8daed95d6e55bffa5b1cef6e8804e46250f384ff;hb=b2f520916cf152c9d2c868f9181369127b485a12;hp=b62fc270fb8ffdbbaa8b5bc402cd543b6ac9d8b3;hpb=44bf264bc9045503216832dcc7261f885983df4c;p=ultimatescore diff --git a/carousel.js b/carousel.js index b62fc27..8daed95 100644 --- a/carousel.js +++ b/carousel.js @@ -695,5 +695,18 @@ function hidescorebug() function showscorebug() { document.getElementById('entire-bug').style.display = null; -}; +} +function showmatch2() +{ + let css = "-webkit-animation: fade-in 1.0s ease; -webkit-animation-fill-mode: both;"; + document.getElementById('scorebug2').style = css; + document.getElementById('clockbug2').style = css; +} + +function hidematch2() +{ + let css = "-webkit-animation: fade-out 1.0s ease; -webkit-animation-fill-mode: both;"; + document.getElementById('scorebug2').style = css; + document.getElementById('clockbug2').style = css; +}