Fix deckWidth->deckHeight typo
This commit is contained in:
parent
ca33ac3c72
commit
b397c08268
@ -224,8 +224,8 @@ function makeCard(cardNum) {
|
||||
card.style.backgroundPositionX =
|
||||
-(cardNum % deckWidth) * parseInt(style.getPropertyValue("width")) + "px";
|
||||
card.style.backgroundPositionY =
|
||||
-Math.floor(cardNum/deckHeight) * parseInt(style.getPropertyValue("height")) + "px";
|
||||
card.style.backgroundImage = "url('deck.png')";
|
||||
-Math.floor(cardNum/deckWidth) * parseInt(style.getPropertyValue("height")) + "px";
|
||||
card.style.backgroundSize = `${deckWidth * 100}% ${deckHeight * 100}%`;
|
||||
document.body.removeChild(card);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user