mirror of
https://github.com/zhigang1992/now-deployment.git
synced 2026-04-02 09:20:58 +08:00
39 lines
826 B
HTML
39 lines
826 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
<title>ncc</title>
|
|
|
|
<link rel="icon" type="image/x-icon" href="ncc.ico" />
|
|
<style>
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
|
|
body {
|
|
background-image: url('stripe.png');
|
|
}
|
|
|
|
canvas {
|
|
background: #fff;
|
|
position: fixed;
|
|
margin: auto;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
bottom: -9999px;
|
|
right: -9999px;
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
<script>
|
|
var canvas = document.getElementById('canvas');
|
|
</script>
|
|
</body>
|
|
</html>
|