gen_avatar.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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>AI ANCHOR GO</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
  8. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
  9. crossorigin="anonymous">
  10. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
  11. <link rel="stylesheet" href="static/style.css">
  12. <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
  13. <style>
  14. body {
  15. font-family: "Lato", sans-serif;
  16. }
  17. .sidenav {
  18. height: 100%;
  19. width: 0;
  20. position: fixed;
  21. z-index: 1;
  22. top: 0;
  23. left: 0;
  24. background-color: #111;
  25. overflow-x: hidden;
  26. transition: 0.5s;
  27. padding-top: 60px;
  28. }
  29. .sidenav a {
  30. padding: 8px 8px 8px 32px;
  31. text-decoration: none;
  32. font-size: 25px;
  33. color: #818181;
  34. display: block;
  35. transition: 0.3s;
  36. }
  37. .sidenav a:hover {
  38. color: #f1f1f1;
  39. }
  40. .sidenav .closebtn {
  41. position: absolute;
  42. top: 0;
  43. right: 25px;
  44. font-size: 36px;
  45. margin-left: 50px;
  46. }
  47. @media screen and (max-height: 450px) {
  48. .sidenav {padding-top: 15px;}
  49. .sidenav a {font-size: 18px;}
  50. }
  51. </style>
  52. </head>
  53. <body>
  54. <div class="container">
  55. <div id="mySidenav" class="sidenav">
  56. <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  57. </div>
  58. <form action="/step_questions/submit" method="post" id="msform">
  59. <!-- fieldsets -->
  60. <fieldset>
  61. <h2 class="fs-title">AI ANCHOR</h2>
  62. <h3 class="fs-subtitle">影像來源</h3>
  63. <input id=title type="text" name='t1' class='img_src' value="" placeholder="1" /> <br/>
  64. <input id="checker" type="button" name="gen_avatar" class="gen_avatar action-button" value="送出" />
  65. </fieldset>
  66. </form>
  67. </div>
  68. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
  69. <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
  70. <script src="static/script_msg.js"></script>
  71. <body>
  72. </div>
  73. </body>
  74. </html>