pause screen fades away
This commit is contained in:
parent
23f84febc5
commit
1f94d101e8
2 changed files with 5 additions and 16 deletions
13
js/view.js
13
js/view.js
|
@ -127,17 +127,14 @@ function showText(text){
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
var pt = document.getElementById("overlay");
|
||||
pt.className = 'unfaded';
|
||||
|
||||
$("#overlay").html(messages[text]);
|
||||
$("#overlay").fadeIn("1000","swing")
|
||||
if (text == 'paused') {
|
||||
if (settings.platform == 'mobile') {
|
||||
text = 'pausedMobile';
|
||||
}
|
||||
}
|
||||
|
||||
pt.innerHTML = messages[text];
|
||||
|
||||
|
||||
if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
|
||||
|
@ -181,9 +178,8 @@ function setMainMenu() {
|
|||
}
|
||||
|
||||
function hideText(text){
|
||||
var pt = document.getElementById("overlay");
|
||||
pt.className = 'faded';
|
||||
pt.innerHTML = '';
|
||||
$("#overlay").fadeOut("1000",function(){$("#overlay").html("");})
|
||||
|
||||
}
|
||||
function gameOverDisplay(){
|
||||
updateHighScore();
|
||||
|
@ -229,6 +225,7 @@ function pause(o) {
|
|||
$('.helpText').show();
|
||||
showbottombar();
|
||||
if (message == 'paused') {
|
||||
console.log("sup");
|
||||
showText(message);
|
||||
}
|
||||
|
||||
|
|
|
@ -154,14 +154,6 @@ and (max-device-width : 480px) {
|
|||
z-index:3001;
|
||||
}
|
||||
|
||||
.faded {
|
||||
opacity:0;
|
||||
}
|
||||
|
||||
.unfaded {
|
||||
opacity:1;
|
||||
}
|
||||
|
||||
.centeredHeader {
|
||||
font-size:5em;
|
||||
text-align:center;
|
||||
|
|
Loading…
Reference in a new issue