index.html 905 B

123456789101112131415161718192021222324252627
  1. <html lang='en'><head>
  2. <meta http-equiv='X-UA-Compatible' content='IE=edge' >
  3. <meta http-equiv='pragma' content='no-cache'>
  4. <meta name='apple-mobile-web-app-capable' content='yes' />
  5. <meta name='viewport' content='initial-scale=1.0, maximum-scale=1.0, user-scalable=0, width=device-width, height=device-height' />
  6. <meta name='apple-mobile-web-app-status-bar-style' content='black-translucent' />
  7. <meta charset='utf-8'/>
  8. <title>数独</title>
  9. <!--Google Analytics-->
  10. </head>
  11. <body style='background: #222; margin: 0 auto;' onorientationchange='window.scrollTo(0, 1);'>
  12. <div style='width: 320px; height: 1px;'></div>
  13. <canvas id='ca' width='320' height='480' style='display: block; margin: 0 auto;z-index: 10000;'></canvas>
  14. <div id='ui' style='position: absolute; top: 433px; left: 0px; width: 320px; height: 48px;'></div>
  15. <script type='text/javascript' src='js/sudoku.js'></script>
  16. </body></html>