diff options
author | Alex Xu <alex_y_xu@yahoo.ca> | 2013-09-21 17:59:47 -0400 |
---|---|---|
committer | Alex Xu <alex_y_xu@yahoo.ca> | 2013-09-21 18:01:23 -0400 |
commit | d10491524e0582d8d216d68d2b9f61028fd72f5e (patch) | |
tree | 36b9cf460e59104d6b2b6b3b0f60d1c73d6cee28 /www/js | |
parent | 01ffd81c6a74d2f03939b26ecceb5281bb1f1519 (diff) | |
download | html5ks-d10491524e0582d8d216d68d2b9f61028fd72f5e.tar.xz html5ks-d10491524e0582d8d216d68d2b9f61028fd72f5e.zip |
warn-container -> interstitial, misc css fixes
Diffstat (limited to 'www/js')
-rw-r--r-- | www/js/html5ks.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www/js/html5ks.js b/www/js/html5ks.js index 9ca2bde..c7aba9b 100644 --- a/www/js/html5ks.js +++ b/www/js/html5ks.js @@ -179,12 +179,12 @@ window.html5ks = { }, warnUnsupported: function () { if (!html5ks.persistent.gotit) { - var warn = document.getElementById("warn-container"); + var interstitial = document.getElementById("interstitial"); document.getElementById("gotit").addEventListener("mouseup", function () { - warn.style.mozAnimation = "0.5s dissolveout"; - warn.style.webkitAnimation = "0.5s dissolveout"; - warn.style.animation = "0.5s dissolveout"; - warn.style.opacity = 0; + interstitial.style.mozAnimation = "1s dissolveout"; + interstitial.style.webkitAnimation = "1s dissolveout"; + interstitial.style.animation = "1s dissolveout"; + interstitial.style.opacity = 0; html5ks.persistent.gotit = true; html5ks.start(); }, false); |