index.html 752 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html;charset=UTF-8">
  5. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
  6. <style>
  7. body {
  8. font-family: helvetica, arial, sans-serif;
  9. }
  10. #cytoscape {
  11. width: 100%;
  12. height: 100%;
  13. position: absolute;
  14. top: 0;
  15. left: 0;
  16. }
  17. </style>
  18. <script src="../build/cytoscape.umd.js"></script>
  19. <title>cytoscape.js playwright page</title>
  20. </head>
  21. <body>
  22. <div id="cytoscape"></div>
  23. <script>
  24. window.cy = cytoscape({
  25. container: document.getElementById('cytoscape')
  26. });
  27. </script>
  28. </body>
  29. </html>