Auto stash before merge of "master" and "origin/master"

master
orphevs 2017-12-09 03:39:37 +01:00
parent d519778c7a
commit 9e1658a142
4 changed files with 29 additions and 2 deletions

View File

@ -1,3 +1,8 @@
@font-face{
font-family: 'Mario Kart';
src: url('../fonts/Mario-Kart-DS.ttf');
}
body{ body{
margin: 0; margin: 0;
padding: 0; padding: 0;
@ -51,6 +56,18 @@ body{
animation: cibleBroken 0.3s 3; animation: cibleBroken 0.3s 3;
} }
<<<<<<< Updated upstream
=======
.cible{
background: url(../img/bg_cible.png) no-repeat;
}
.cible-touchee{
background: url(../img/bg_cible_broken.png) no-repeat;
animation: cibleBroken 0.3s 3;
}
>>>>>>> Stashed changes
@keyframes cibleBroken{ @keyframes cibleBroken{
0%{ 0%{
opacity: 1; opacity: 1;

Binary file not shown.

View File

@ -107,6 +107,7 @@ function move(event) {
} }
} }
<<<<<<< Updated upstream
setInterval(function(){ setInterval(function(){
console.log('test'); console.log('test');
if(bulletX == 0 || bulletY == 0){ if(bulletX == 0 || bulletY == 0){
@ -166,6 +167,9 @@ setInterval(function(){
grid.style.background = 'url(./assets/img/bg_bullet.png) no-repeat'; grid.style.background = 'url(./assets/img/bg_bullet.png) no-repeat';
grid.style.backgroundPosition = bulletDir; grid.style.backgroundPosition = bulletDir;
}, 32.12); }, 32.12);
=======
document.addEventListener('keydown', move, false);
>>>>>>> Stashed changes
setInterval(function(){ setInterval(function(){
x2 = Math.floor(Math.random() * 11); x2 = Math.floor(Math.random() * 11);
@ -180,7 +184,13 @@ setInterval(function(){
cibley = y2, cibley = y2,
emplacement = document.querySelector(".line-"+ciblex+" .col-"+cibley); emplacement = document.querySelector(".line-"+ciblex+" .col-"+cibley);
emplacement.classList.add('cible'); emplacement.classList.add('cible');
<<<<<<< Updated upstream
}, 3000); }, 3000);
document.addEventListener('keydown', move, false); document.addEventListener('keydown', move, false);
setPosition(x, y, direction); setPosition(x, y, direction);
=======
}, 3000);
>>>>>>> Stashed changes

View File

@ -203,7 +203,7 @@
<div class="col col-7"></div> <div class="col col-7"></div>
<div class="col col-8"></div> <div class="col col-8"></div>
<div class="col col-9"></div> <div class="col col-9"></div>
<div class="col col-10"></div> <div class="col col-10 cible-touchee"></div>
<div class="col col-11"></div> <div class="col col-11"></div>
<div class="col col-12"></div> <div class="col col-12"></div>
<div class="col col-13"></div> <div class="col col-13"></div>