|
@@ -0,0 +1,89 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="en" >
|
|
|
+<head>
|
|
|
+ <meta charset="UTF-8">
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
+ <title>AI ANCHOR GO</title>
|
|
|
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
|
|
|
+ <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
|
|
|
+ crossorigin="anonymous">
|
|
|
+ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
|
|
+ <link rel="stylesheet" href="style.css">
|
|
|
+ <script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
|
|
+ <style>
|
|
|
+ body {
|
|
|
+ font-family: "Lato", sans-serif;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sidenav {
|
|
|
+ height: 100%;
|
|
|
+ width: 0;
|
|
|
+ position: fixed;
|
|
|
+ z-index: 1;
|
|
|
+ top: 0;
|
|
|
+ left: 0;
|
|
|
+ background-color: #111;
|
|
|
+ overflow-x: hidden;
|
|
|
+ transition: 0.5s;
|
|
|
+ padding-top: 60px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sidenav a {
|
|
|
+ padding: 8px 8px 8px 32px;
|
|
|
+ text-decoration: none;
|
|
|
+ font-size: 25px;
|
|
|
+ color: #818181;
|
|
|
+ display: block;
|
|
|
+ transition: 0.3s;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sidenav a:hover {
|
|
|
+ color: #f1f1f1;
|
|
|
+ }
|
|
|
+
|
|
|
+ .sidenav .closebtn {
|
|
|
+ position: absolute;
|
|
|
+ top: 0;
|
|
|
+ right: 25px;
|
|
|
+ font-size: 36px;
|
|
|
+ margin-left: 50px;
|
|
|
+ }
|
|
|
+
|
|
|
+ @media screen and (max-height: 450px) {
|
|
|
+ .sidenav {padding-top: 15px;}
|
|
|
+ .sidenav a {font-size: 18px;}
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+</head>
|
|
|
+<body>
|
|
|
+ <div class="container">
|
|
|
+ <div id="mySidenav" class="sidenav">
|
|
|
+ <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
|
|
|
+ </div>
|
|
|
+ <form action="/step_questions/submit" method="post" id="msform">
|
|
|
+
|
|
|
+ <!-- fieldsets -->
|
|
|
+ <fieldset>
|
|
|
+ <h2 class="fs-title">AI ANCHOR</h2>
|
|
|
+ <h3 class="fs-subtitle">影像來源</h3>
|
|
|
+ <input id=title type="text" name='t1' class='img_src' value="" placeholder="1" /> <br/>
|
|
|
+
|
|
|
+ <input id="checker" type="button" name="gen_avatar" class="next action-button" value="送出" />
|
|
|
+
|
|
|
+
|
|
|
+ </fieldset>
|
|
|
+ </form>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
|
|
+ <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js'></script>
|
|
|
+ <script src="script_msg.js"></script>
|
|
|
+
|
|
|
+ <body>
|
|
|
+
|
|
|
+</div>
|
|
|
+
|
|
|
+</body>
|
|
|
+</html>
|