1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
- <title>ngraph.forcelayout demo</title>
- <!-- <script src="ngraph.forcelayout2d.js"></script> -->
- <style>
- * {
- box-sizing: border-box;
- }
- body {
- font-family: 'Avenir', Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #EEE;
- margin: 0;
- background: rgb(12, 41, 82);
- overflow: hidden;
- }
- canvas {
- position: absolute;
- width: 100%;
- height: 100%;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but puller doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <canvas id='cnv'></canvas>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- <script>
- (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
- (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
- m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
- })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
- ga('create', 'UA-47259320-1', 'anvaka.github.io');
- ga('send', 'pageview');
- </script>
- </body>
- </html>
|