File size: 1,172 Bytes
ee75ea1
 
 
 
 
 
 
 
 
 
 
 
 
dc886d5
94ae583
ee75ea1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width">
    <title>Sample Chat AI VTuber</title>
    <link rel="stylesheet" href="aivtuber.css">
    <script src="./aivtuber.js"></script>
</head>

<body>
    <div id="vtuber">
        <iframe width="auto" height="315" src="https://www.youtube.com/embed/9BSgttQDyOw?si=ax2F4oAi2h9f9eGT" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
        <!--<img id="charaImg" src="chara.png" width="auto" height="400" />/-->
    </div>
    <div id="aiResponse" class="aiResponseBox">
        <p class="ai-response" id="aiResponseUtterance"></p>
    </div>
    <div class="bottomBox">
        <p id="userComment"></p>
        <button id="startLiveButton" onclick="startLive();">LIVE開始</button>
        <div id="submit_form">
            <input type="text" id="utterance" />
            <button id="sendButton" onclick="onClickSend();">送信</button>
        </div>
    </div>
</body>

</html>