Fix button behavior.
This commit is contained in:
parent
3d290f2ccc
commit
4c38e0cc6c
|
|
@ -1,5 +1,6 @@
|
||||||
* {
|
* {
|
||||||
outline: none;
|
outline: none;
|
||||||
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
|
@ -84,6 +85,7 @@ footer a:hover {
|
||||||
grid-template-columns: [c1] 33.33% [c2] 33.33% [c3] 33.33% [c-end];
|
grid-template-columns: [c1] 33.33% [c2] 33.33% [c3] 33.33% [c-end];
|
||||||
grid-template-rows: [r1] 33.33% [r2] 33.33% [r3] 33.33% [r-end];
|
grid-template-rows: [r1] 33.33% [r2] 33.33% [r3] 33.33% [r-end];
|
||||||
filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
|
filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#stage button {
|
#stage button {
|
||||||
|
|
|
||||||
|
|
@ -224,7 +224,7 @@ function resizeStage() {
|
||||||
}
|
}
|
||||||
|
|
||||||
tiles.forEach(function (button) {
|
tiles.forEach(function (button) {
|
||||||
button.onmousedown = function (e) {
|
button.onclick = function (e) {
|
||||||
var tileId = e.target.id;
|
var tileId = e.target.id;
|
||||||
var index = grid.indexOf(parseInt(tileId));
|
var index = grid.indexOf(parseInt(tileId));
|
||||||
moveHorizontal(index);
|
moveHorizontal(index);
|
||||||
|
|
|
||||||
Reference in New Issue