Next commited on
Commit
67b4420
·
verified ·
1 Parent(s): a3d4279

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -0
app.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ html_content = """
4
+ <!DOCTYPE html>
5
+ <html lang="en">
6
+ <head>
7
+ <meta charset="UTF-8">
8
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
+ <title>Text Animation</title>
10
+ <style>
11
+ @keyframes fadeInOut {
12
+ 0%, 100% {
13
+ opacity: 0;
14
+ }
15
+ 50% {
16
+ opacity: 1;
17
+ }
18
+ }
19
+
20
+ .animated-text {
21
+ font-size: 3em;
22
+ font-weight: bold;
23
+ text-align: center;
24
+ margin-top: 20%;
25
+ animation: fadeInOut 3s infinite;
26
+ color: #000;
27
+ }
28
+ </style>
29
+ </head>
30
+ <body>
31
+ <div class="animated-text">HEX RVC</div>
32
+ </body>
33
+ </html>
34
+ """
35
+
36
+ with gr.Blocks() as demo:
37
+ gr.Html(html_content)
38
+
39
+ demo.launch()