This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import turtle as t | |
| import time | |
| import random | |
| """ | |
| 这里修改窗口大小,例如 | |
| SWIDTH = 1920 | |
| SHEIGHT = 1080 | |
| """ | |
| SWIDTH = 960 | |
| SHEIGHT = 540 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| goodfont=[ | |
| 'Adobe Heiti Std', | |
| 'Arial Unicode MS', | |
| 'DengXian', | |
| 'SimHei', | |
| 'STKaiti', | |
| 'STXihei', | |
| ] | |
| 程序中有效: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| container = document.getElementById('Exam') | |
| for (var i = 1; i <126; ++i) { | |
| tmp_str = container.children[i].getAttribute('name'); | |
| console.log("<br><br>"); | |
| var flag = parseInt(tmp_str.split('x')[1]); | |
| if (flag>115){ | |
| console.log(document.getElementsByClassName('QClick')[i-1].innerText); | |
| console.log('<br>'+document.getElementsByClassName('dis')[i-1].innerText); | |
| }else{ | |
| console.log( document.getElementsByClassName('dis')[i-1].innerHTML); |
NewerOlder