Начало
Игры
Checkboxes
Только, сколько флажков Вы можете поставить через 20 секунд? Играйте в эту интересную игру JavaScript и узнайте.
Проверьте свое умение. Сколько флажков Вы можете поставить через 20 секунд?
JavaScript Games: CheckBoxes
<!-- TWO STEPS TO INSTALL CHECKBOXES: 1. Paste the coding into the HEAD of your HTML document 2. Put the last coding into the BODY of your HTML document --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin var total = 0 var play = false function display(element) { var now = new Date() if (!play) { play = true startTime = now.getTime()} if (now.getTime() - startTime > 20000) { element.checked = !element.checked return } if (element.checked) total++ else total-- element.form.num.value = total } function restart(form) { total = 0 play = false for (var i = 1; i <= 100; ++i) { form.elements[i].checked = false } } // End --> </SCRIPT> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <CENTER>Test your skill. How many boxes can you check in 20 seconds?</CENTER> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin document.write("<FORM><CENTER>") document.write('<INPUT TYPE="text" VALUE="0" '); document.write('NAME="num" SIZE=10 onFocus="this.blur()"><BR>') document.write("<HR SIZE=1 WIDTH=40%>") for (var i = 0; i < 10; ++i) { for (var j = 0; j < 10; ++j) { document.write('<INPUT TYPE="checkbox" '); document.write('onClick="display(this)">')} document.write("<BR>")} document.write("<HR SIZE=1 WIDTH=40%>") document.write('<INPUT TYPE="button" VALUE="restart" '); document.write('onClick="restart(this.form)">') document.write("</CENTER></FORM>") // End --> </SCRIPT> <!-- Script Size: 1.63 KB -->