使用按鈕,我試圖讓圖像在第一次點擊時移動到頁面的右上角,並在第二次點擊時回到它的原始位置。任何進一步的點擊都會簡單地繼續這個循環,因爲我是JS新手,我不確定要使用哪個addEventListeners。 在此先感謝從一個點擊的設置位置移動一個圖像,然後回到原來的位置?
HTML:
<div id="task2" class="task">
<h2>Task 2</h2>
<!-- image courtesy Google Chrome -->
<img src="media/chrome.png" alt="Chrome Browser" id="chrome_browser">
<ol>
<li>First click: Move the Chrome icon to the top, right corner of the page.</li>
<li>Second click: Move the Chrome icon back to it's original spot.</li>
<li>Further clicks: Continue the cycle.</li>
</ol>
<input type="button" value="Move" id="task2control">
</div>
這是完美的。非常感謝! –