reformat coordinate assets

This commit is contained in:
Thibault Duplessis 2014-05-16 10:08:06 +02:00
parent 2c8f0eedf0
commit dde6aa5686
2 changed files with 93 additions and 108 deletions

View file

@ -71,7 +71,7 @@ $(function() {
$.each($coords, function(i, e) {
e.text('');
});
}
};
var newCoord = function(prevCoord) {
// disallow the previous coordinate's row or file from being selected
@ -79,7 +79,7 @@ $(function() {
var fileIndex = files.indexOf(prevCoord[0]);
files = files.slice(0, fileIndex) + files.slice(fileIndex + 1, 8);
var rows = '12345678';
var rows = '12345678';
var rowIndex = rows.indexOf(prevCoord[1]);
rows = rows.slice(0, rowIndex) + rows.slice(rowIndex + 1, 8);
@ -95,7 +95,7 @@ $(function() {
lastElement.attr('id', 'next_coord' + ($coords.length));
lastElement.text(newCoord($coords[$coords.length - 1].text()));
$coords.push(lastElement);
}
};
var stop = function() {
clearCoords();
@ -146,15 +146,15 @@ $(function() {
$score.text(score);
advanceCoords();
} else {
$coords[0].addClass('nope');
setTimeout(function() {
$coords[0].removeClass('nope');
}, 500);
$coords[0].addClass('nope');
setTimeout(function() {
$coords[0].removeClass('nope');
}, 500);
}
$trainer.toggleClass('wrong', !hit);
});
$coords[0].text(newCoord('a1'));
for(i = 1; i < $coords.length; i++)
for (i = 1; i < $coords.length; i++)
$coords[i].text(newCoord($coords[i - 1].text()));
tick();
}, 1000);

View file

@ -1,133 +1,118 @@
#trainer .lichess_board {
display: none;
border: 1px solid #c0c0c0;
display: none;
border: 1px solid #c0c0c0;
}
#trainer.white .white .lichess_board, #trainer.black .black .lichess_board {
display: block;
#trainer.white .white .lichess_board,
#trainer.black .black .lichess_board {
display: block;
}
#trainer.play div.lcs:hover {
cursor: pointer;
box-shadow: inset 0 0 10px 2px rgba(216,85,0,0.9);
cursor: pointer;
box-shadow: inset 0 0 10px 2px rgba(216, 85, 0, 0.9);
}
#trainer .progress_bar_container {
margin: 10px 0 10px 0;
width: 514px;
height: 10px;
margin: 10px 0 10px 0;
width: 514px;
height: 10px;
}
#trainer .progress_bar {
width: 100%;
height: 10px;
background-color: #759900;
box-shadow: 0px 1px 2px rgba(0,0,0,0.12) inset;
width: 100%;
height: 10px;
background-color: #759900;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12) inset;
}
#trainer .next_coord {
transition: all 0.1s ease;
position: absolute;
top: 0;
left: 0;
width: 460px;
height: 514px;
line-height: 512px;
text-align: center;
font-size: 150px;
font-family: monospace;
font-weight: bold;
text-transform: uppercase;
opacity: 1;
pointer-events: none;
color: #eee;
text-shadow: 0 10px 10px #444;
opacity: 0.8;
transition: 0.2s;
transition: all 0.1s ease;
position: absolute;
top: 0;
left: 0;
width: 460px;
height: 514px;
line-height: 512px;
text-align: center;
font-size: 150px;
font-family: monospace;
font-weight: bold;
text-transform: uppercase;
opacity: 1;
pointer-events: none;
color: #eee;
text-shadow: 0 10px 10px #444;
opacity: 0.8;
transition: 0.2s;
}
#trainer .next_coord.nope {
color: red !important;
color: red !important;
}
#trainer #next_coord0 {
color: #fff;
color: #fff;
}
#trainer #next_coord1 {
left: 150px;
top: 50px;
font-size: 65px;
opacity: 0.7;
left: 150px;
top: 50px;
font-size: 65px;
opacity: 0.7;
}
#trainer #next_coord2 {
transition: none;
left: 235px;
top: 66px;
font-size: 30px;
opacity: 0.4;
transition: none;
left: 235px;
top: 66px;
font-size: 30px;
opacity: 0.4;
}
#trainer .explanation {
text-align: justify;
margin-bottom: 20px;
text-align: justify;
margin-bottom: 20px;
}
#trainer .explanation li {
list-style: inside disc;
margin-top: 1em;
}
#trainer .explanation li {
list-style: inside disc;
margin-top: 1em;
}
#trainer .start {
font-size: 30px;
font-size: 30px;
}
#trainer .score {
position: absolute;
top: 202px;
left: 202px;
width: 512px;
font-family: monospace;
font-size: 70px;
display: block;
margin: auto;
width: 110px;
height: 110px;
text-align: center;
line-height: 110px;
color: #fff;
background-color: #759900;
transition: all 1s;
opacity: 1;
box-shadow: 0 0 10px #fff;
border-radius: 3px;
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
cursor: pointer;
position: absolute;
top: 202px;
left: 202px;
font-family: monospace;
font-size: 70px;
display: block;
margin: auto;
width: 110px;
height: 110px;
text-align: center;
line-height: 110px;
color: #fff;
background-color: #759900;
transition: all 1s;
opacity: 1;
box-shadow: 0 0 10px #fff;
border-radius: 3px;
transform: rotate(360deg);
-webkit-transform: rotate(360deg);
cursor: pointer;
}
#trainer.init .score {
opacity: 0;
opacity: 0;
}
#trainer.play .score {
opacity: 1;
top: 550px;
box-shadow: 0 0 1px #fff;
border-radius: 100px;
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
opacity: 1;
top: 550px;
box-shadow: 0 0 1px #fff;
border-radius: 100px;
transform: rotate(0deg);
-webkit-transform: rotate(0deg);
}
#trainer.wrong .progress_bar, #trainer.wrong strong.score {
background-color: #ac524f;
#trainer.wrong .progress_bar,
#trainer.wrong strong.score {
background-color: #ac524f;
}
#trainer.play .start, #trainer #next_coord, #trainer.play form.color {
display: none;
#trainer.play .start,
#trainer #next_coord,
#trainer.play form.color {
display: none;
}
#trainer.play #next_coord {
display: block;
display: block;
}