forked from pinokiofactory/wan
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (158 loc) · 3.23 KB
/
index.html
File metadata and controls
158 lines (158 loc) · 3.23 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<html>
<head>
<style>
html, body {
height: 100%;
margin: 0;
}
main {
background: white;
font-family: Sans-serif;
display: flex;
height: 100%;
font-size: 14px;
}
ol {
padding-inline-start: 15px;
flex-grow: 1;
margin: 10px 0;
}
li {
font-size: 14px;
font-weight: bold;
}
.row {
display: flex;
flex-direction: column;
color: rgba(0,0,0,0.8);
padding: 20px;
box-sizing: border-box;
border-radius: 5px;
margin: 20px 0;
background: whitesmoke;
}
.subtitle {
margin-top: 20px;
}
.row img {
width: 100%;
}
h1 {
text-align: center;
font-size: 50px;
line-height: 50px;
letter-spacing: -2px;
margin: 0;
margin-bottom: 10px;
}
h2 {
font-size: 25px;
margin: 0;
color: rgba(0,0,0,0.9);
}
.tab {
align-items: center;
text-decoration: none;
color: silver;
}
.tab-item {
padding: 10px;
text-decoration: none;
color: black;
display: block;
font-size: 14px;
word-break: break-word;
}
nav {
width: 200px;
height: 100%;
padding: 20px;
box-sizing: border-box;
overflow: auto;
flex-shrink: 0;
border-right: 1px solid rgba(0,0,100,0.1);
}
.canvas {
overflow: auto;
padding: 40px;
box-sizing: border-box;
scroll-behavior: smooth;
flex-grow: 1;
}
.container {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
max-width: 1000px;
display: grid;
margin: 0 auto;
}
a:active {
border-right: 10px solid black;
}
.btn {
display: inline-block;
text-decoration: none;
padding: 10px;
border-radius: 5px;
background: #0052D9;
color: white;
margin: 10px 0;
text-align: center;
}
.well {
margin: 20px 0;
box-sizing: border-box;
}
.t {
color: rgba(0,0,0,0.4);
font-weight: bold;
}
</style>
</head>
<body>
<main>
<div class='canvas'>
<h1>Hunyuan Video</h1>
<div class='container'>
<div class='row'>
<h2>Fastest</h2>
<div class='t'>Hunyuan Fast Model + Teacache + Compile</div>
<ol>
<li>if you want the fastest option (will be lower quality than the original model)</li>
</ol>
<a class='btn' href="start.js?profile=4&fast=true&compile=true">Start</a>
</div>
<div class='row'>
<h2>Fast</h2>
<div class='t'>Hunyuan Fast Model + Teacache</div>
<ol>
<li>if the Fastest mode fails to compile for some reason</li>
<li>if you don't want it to recompile every time you change the prompt</li>
</ol>
<a class='btn' href="start.js?profile=4&fast=true">Start</a>
</div>
<div class='row'>
<h2>Original Compiled</h2>
<div class='t'>Original Hunyuan Video Model, with compilation</div>
<ol>
<li>If you want high quality results</li>
<li>If you are OK with slower generation</li>
</ol>
<a class='btn' href="start.js?profile=4&compile=true">Start</a>
</div>
<div class='row'>
<h2>Original NON-Compiled</h2>
<div class='t'>Original Hunyuan Video Model</div>
<ol>
<li>If you want high quality results</li>
<li>But the "Original Compiled" option doesn't work</li>
</ol>
<a class='btn' href="start.js?profile=4">Start</a>
</div>
</div>
</div>
</main>
</body>
</html>