forked from jchinkle/react-virtual-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 977 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>React Virtual Grid</title>
<link rel="stylesheet" href="./dist/bundle.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
</head>
<body>
<h1 style="font-family:sans-serif; font-size: 64px; text-align: center; position: absolute; left: 0; right: 0; top: 50%; height: 64px; color: #fff; z-index: 2; margin-top: -32px; pointer-events: none;">250,000,000,000 cells</h1>
<div id="content"></div>
<script type="text/javascript" src="./dist/test.js"></script>
<script>
// prevent the page itself from having bounce effect
document.addEventListener('touchmove', function(event) {
event.preventDefault();
});
</script>
</body>
</html>