打字游戏

打字游戏ES5面向对象的写法

天大地大妈咪最大 提交于 2019-11-29 08:28:59
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>打字游戏面向对象</title> <style type="text/css"> *{margin:0;padding:0;} html,body{width:100%;height:100%;} div{width:100%;height:100%;position:relative;} div span{ display:inline-block;width:20px;height:20px; text-align:center;line-height:20px;border:1px solid #ccc; position:absolute;top:0; } </style> <script type="text/javascript"> function PrintChar(){ this.body=document.getElementsByTagName("body")[0]; this