您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

close2.html 1022B

123456789101112131415161718192021222324252627282930313233
  1. <html>
  2. <head>
  3. <link rel="stylesheet" href="css/all.css"/>
  4. <!--#include virtual="title.html" -->
  5. <script><!--#include virtual="/interface_config.js" --></script>
  6. <script>function translateStr(id, msg) {
  7. var div = document.getElementById(id);
  8. div.innerHTML = msg;
  9. }
  10. function translate() {
  11. translateStr('thanksMessage',
  12. 'Thank you for using ' + interfaceConfig.APP_NAME);
  13. translateStr('hintMessage',
  14. 'You can use video calls with '
  15. + interfaceConfig.APP_NAME +' for your business');
  16. }
  17. </script>
  18. </head>
  19. <body onload="translate();">
  20. <div class="redirectPageMessage">
  21. <div class="thanks-msg">
  22. <p id="thanksMessage"></p>
  23. </div>
  24. <div class="hint-msg">
  25. <p>
  26. <span>Did you know?</span>
  27. <span class="hint-msg__holder" id="hintMessage"></span>
  28. </p>
  29. <div class="happy-software"></div>
  30. </div>
  31. </div>
  32. </body>
  33. </html>