Fix card backgroundPosition in Chrome

Apperently, in Firefox you can get the style before appending, whereas
in Chrome you cannot
This commit is contained in:
Adam Goldsmith 2017-09-20 18:38:01 -04:00
parent 0d724988d5
commit 27fa1e69ff

View File

@ -86,18 +86,19 @@ interact('.card-pile')
// draw a new card // draw a new card
let newCard = document.createElement('div'); let newCard = document.createElement('div');
newCard.className = "card"; newCard.className = "card";
// insert the card to the page
document.querySelector("#card-container").appendChild(newCard);
let style = window.getComputedStyle(newCard); let style = window.getComputedStyle(newCard);
let cardNum = pile.pop(); let cardNum = pile.pop();
newCard.setAttribute('data-num', cardNum); newCard.setAttribute('data-num', cardNum);
newCard.style.backgroundPosition = ` newCard.style.backgroundPositionX =
${(cardNum % deckWidth) * parseInt(style.getPropertyValue("width"))}px (cardNum % deckWidth) * parseInt(style.getPropertyValue("width")) + "px";
${Math.floor(cardNum/deckHeight) * parseInt(style.getPropertyValue("height"))}px`; newCard.style.backgroundPositionY =
Math.floor(cardNum/deckHeight) * parseInt(style.getPropertyValue("height")) + "px";
newCard.style.backgroundImage = "url('deck.png')"; newCard.style.backgroundImage = "url('deck.png')";
newCard.style.backgroundSize = `${deckWidth * 100}% ${deckHeight * 100}%`; newCard.style.backgroundSize = `${deckWidth * 100}% ${deckHeight * 100}%`;
// insert the card to the page
document.querySelector("#card-container").appendChild(newCard);
// update deck text // update deck text
event.target.innerHTML = `${pileName.toUpperCase()}<br>${pile.length}/${cardCount}`; event.target.innerHTML = `${pileName.toUpperCase()}<br>${pile.length}/${cardCount}`;