我正在尝试用 jQuery 制作卡片记忆游戏,但我有一个小问题。我想要它,所以当您单击卡片时,每次启动程序时图像都是随机的。我也在尝试使一张卡的图像与另一张随机卡共享。现在我有卡片,但是当随机选择图像时,它会应用于所有卡片。到目前为止,这是我的 JavaScript。如果有人可以在这里帮助我,那就太好了。
var score = 0;
var images = ["images are here"];
Image = images[Math.floor(Math.random() * images.length)];
$("#score").text("Number of turns: " + score);
$(".cards").mouseenter(function () {
$(this).animate({
height: "+=10px",
width: "+=10px"
});
});
$(".cards").mouseleave(function () {
$(this).animate({
height: "-=10px",
width: "-=10px"
});
});
$(".cards").click(function () {
score++;
$("#score").text("Number of turns: " + score);
$(this).css({
"background-image": 'url(' + Image + ')'
});
});
编辑:这是html:
<body>
<h5>card game</h5>
<div id="card1" class="cards"></div>
<div id="card2" class="cards"></div>
<div id="card3" class="cards"></div>
<div id="card4" class="cards"></div>
<div id="card5" class="cards"></div>
<div id="card6" class="cards"></div>
<div id="score"></div>
</body>