app.html 624 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>CocoClass</title>
  7. <style>
  8. *{
  9. margin: 0;
  10. height: 0;
  11. }
  12. body,html,iframe{
  13. width: 100%;
  14. overflow: hidden;
  15. height: 100%;
  16. }
  17. </style>
  18. <script type="text/javascript">
  19. document.domain = document.domain.split(".").slice(-2).join(".");
  20. </script>
  21. </head>
  22. <body>
  23. <iframe src="https://beta.cloud.cocorobo.cn/iframe.html" frameborder="0"></iframe>
  24. </body>
  25. </html>