2
我有一張3x4的圖像表,我想像拼圖一樣亂七八糟。總共有12個獨立的GIF。我需要幫助的地方是,嚴格使用JavaScript,我怎麼設置它,以便在每次頁面加載時隨機加擾圖像?到目前爲止,我已加載的所有圖片到一個數組,像這樣:爭奪圖像-Javascript
不完整的JS:
var imgArray = new Array();
imgArray[0] = new Image();
imgArray[0].src = 'pic_01.gif';
imgArray[1] = new Image();
imgArray[1].src = 'pic_02.gif';
imgArray[2] = new Image();
imgArray[2].src = 'pic_03.gif';
imgArray[3] = new Image();
imgArray[3].src = 'pic_04.gif';
etc... pic_05.gif...
我的HTML:
<table>
<tr>
<th> <img src="pic_01.gif" onclick="imageSwap()" alt="" border= height=100 width=100></img> </th>
<td> <img src="pic_02.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_03.gif" alt="" border= height=100 width=100></img></td>
</tr>
<tr>
<td> <img src="pic_04.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_05.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_06.gif" alt="" border= height=100 width=100></img></td>
</tr>
<tr>
<td> <img src="pic_07.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_08.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_09.gif" alt="" border= height=100 width=100></img></td>
</tr>
<tr>
<td> <img src="pic_10.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_11.gif" alt="" border= height=100 width=100></img></td>
<td> <img src="pic_12.gif" alt="" border= height=100 width=100></img></td>
</tr>
</table>
我最終會想要做的是能讓用戶點擊一個「隨機」圖像,並將其與另一個「隨機」圖像交換,以解決這個難題。任何輸入是讚賞!謝謝!
好了,我看你做了什麼。我仍然熟悉JavaScript中的可用方法,因爲我對它很陌生。我將如何去允許用戶點擊並與另一個圖像「交換」。例如,在我的網頁中,有一個難題,所以在拼圖隨機化後,用戶可以嘗試「解決」拼圖。 – swam
@swam這是一個單獨的問題。我會自己嘗試一下,然後問一個新的問題,如果你不能掌握它的話。現在,請不要忘記通過點擊複選標記來投票並接受! – SomeKittens