local.html 690 B

123456789101112131415161718192021222324252627
  1. <html lang="en">
  2. <head>
  3. <script src="../dist/rcsb-saguaro-3d.js" type="text/javascript"></script>
  4. <title>Saguaro 3D</title>
  5. </head>
  6. <body>
  7. <div id="pfv" style="margin-top: 200px;" ></div>
  8. <script type="text/javascript">
  9. function getJsonFromUrl(url) {
  10. if(!url) url = location.search;
  11. var query = url.substr(1);
  12. var result = {};
  13. query.split("&").forEach(function(part) {
  14. var item = part.split("=");
  15. result[item[0]] = decodeURIComponent(item[1]);
  16. });
  17. return result;
  18. }
  19. const args = getJsonFromUrl();
  20. const fv = new RcsbFv3D.Create("pfv", args.entryId);
  21. fv.render();
  22. </script>
  23. </body>
  24. </html>