Skip to content

Commit 8eebbae

Browse files
committed
test
1 parent fd92454 commit 8eebbae

4 files changed

Lines changed: 341 additions & 5 deletions

File tree

LucidFlux/LucidFlux.html

Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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>LucidFlux - High-Resolution Image Generation</title>
7+
<link rel="stylesheet" href="/assets/css/lucidflux.css">
8+
</head>
9+
<body>
10+
<div class="lucidflux-hero">
11+
<div class="lucidflux-section">
12+
<h1>LucidFlux</h1>
13+
<p>High-Resolution Image Generation with Flow Matching</p>
14+
</div>
15+
</div>
16+
17+
<div class="lucidflux-section">
18+
<h2>What is LucidFlux?</h2>
19+
<p style="text-align: center; font-size: 1.2rem; max-width: 800px; margin: 0 auto;">
20+
From your prompts to high-resolution images, LucidFlux excels in flow matching for high-quality image generation with advanced diffusion models.
21+
</p>
22+
</div>
23+
24+
<div class="lucidflux-section">
25+
<h2>Technical Framework</h2>
26+
<p style="text-align: center; max-width: 800px; margin: 0 auto 2rem;">
27+
LucidFlux utilizes advanced flow matching techniques combined with diffusion models to generate high-quality images with superior resolution and detail.
28+
</p>
29+
30+
<div class="demo-grid">
31+
<div class="demo-card">
32+
<img src="https://via.placeholder.com/400x300/667eea/ffffff?text=Flow+Matching" alt="Flow Matching">
33+
<div class="demo-card-content">
34+
<h3>Flow Matching</h3>
35+
<p>Advanced flow matching algorithms for stable and efficient image generation.</p>
36+
</div>
37+
</div>
38+
39+
<div class="demo-card">
40+
<img src="https://via.placeholder.com/400x300/764ba2/ffffff?text=High+Resolution" alt="High Resolution">
41+
<div class="demo-card-content">
42+
<h3>High Resolution</h3>
43+
<p>Generate images with superior detail and clarity at high resolutions.</p>
44+
</div>
45+
</div>
46+
47+
<div class="demo-card">
48+
<img src="https://via.placeholder.com/400x300/667eea/ffffff?text=Diffusion+Models" alt="Diffusion Models">
49+
<div class="demo-card-content">
50+
<h3>Diffusion Models</h3>
51+
<p>State-of-the-art diffusion models for realistic image synthesis.</p>
52+
</div>
53+
</div>
54+
</div>
55+
</div>
56+
57+
<div class="lucidflux-section">
58+
<h2>Gallery</h2>
59+
<div class="mosaic-grid">
60+
<div class="mosaic-item">
61+
<img src="https://via.placeholder.com/300x300/667eea/ffffff?text=Sample+1" alt="Sample 1">
62+
</div>
63+
<div class="mosaic-item">
64+
<img src="https://via.placeholder.com/300x300/764ba2/ffffff?text=Sample+2" alt="Sample 2">
65+
</div>
66+
<div class="mosaic-item">
67+
<img src="https://via.placeholder.com/300x300/667eea/ffffff?text=Sample+3" alt="Sample 3">
68+
</div>
69+
<div class="mosaic-item">
70+
<img src="https://via.placeholder.com/300x300/764ba2/ffffff?text=Sample+4" alt="Sample 4">
71+
</div>
72+
</div>
73+
</div>
74+
75+
<div class="lucidflux-section">
76+
<h2>Resources</h2>
77+
<div style="text-align: center;">
78+
<a href="#" class="btn" style="margin: 0.5rem;">GitHub</a>
79+
<a href="#" class="btn" style="margin: 0.5rem;">Paper</a>
80+
<a href="#" class="btn" style="margin: 0.5rem;">Demo</a>
81+
</div>
82+
</div>
83+
84+
<footer style="background: #f8f9fa; text-align: center; padding: 2rem 0; border-top: 1px solid #e9ecef; color: #6c757d;">
85+
<div class="lucidflux-section">
86+
<p>&copy; 2024 W2GenAI Lab. All rights reserved.</p>
87+
</div>
88+
</footer>
89+
</body>
90+
</html>

LucidFlux/LucidFlux.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
---
2-
layout: lucidflux
2+
layout: default
33
permalink: /LucidFlux/
44
title: LucidFlux - High-Resolution Image Generation
5-
extra_css:
6-
- /assets/css/lucidflux.css
7-
extra_js:
8-
- /assets/js/lucidflux.js
95
---
106

117
<!-- 顶部浮动demo图片 - 更新版本 -->

assets/css/lucidflux.css

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
/* LucidFlux specific styles */
2+
.lucidflux-hero {
3+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
4+
color: white;
5+
padding: 4rem 0;
6+
text-align: center;
7+
}
8+
9+
.lucidflux-hero h1 {
10+
font-size: 3rem;
11+
margin-bottom: 1rem;
12+
}
13+
14+
.lucidflux-section {
15+
padding: 4rem 0;
16+
max-width: 1200px;
17+
margin: 0 auto;
18+
padding-left: 20px;
19+
padding-right: 20px;
20+
}
21+
22+
.lucidflux-section h2 {
23+
text-align: center;
24+
margin-bottom: 3rem;
25+
color: #495057;
26+
}
27+
28+
.demo-grid {
29+
display: grid;
30+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
31+
gap: 2rem;
32+
margin-top: 2rem;
33+
}
34+
35+
.demo-card {
36+
background: white;
37+
border-radius: 8px;
38+
overflow: hidden;
39+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
40+
border: 1px solid #e9ecef;
41+
}
42+
43+
.demo-card img {
44+
width: 100%;
45+
height: 200px;
46+
object-fit: cover;
47+
}
48+
49+
.demo-card-content {
50+
padding: 1.5rem;
51+
}
52+
53+
.demo-card h3 {
54+
margin-top: 0;
55+
color: #495057;
56+
}
57+
58+
.demo-card p {
59+
color: #6c757d;
60+
margin-bottom: 1rem;
61+
}
62+
63+
.btn {
64+
display: inline-block;
65+
background: #007bff;
66+
color: white;
67+
padding: 0.75rem 1.5rem;
68+
border-radius: 4px;
69+
text-decoration: none;
70+
font-weight: 500;
71+
transition: background-color 0.3s ease;
72+
}
73+
74+
.btn:hover {
75+
background: #0056b3;
76+
color: white;
77+
text-decoration: none;
78+
}
79+
80+
.floating-demos {
81+
position: relative;
82+
height: 400px;
83+
margin-bottom: 4rem;
84+
}
85+
86+
.demo-left, .demo-right {
87+
position: absolute;
88+
width: 200px;
89+
height: 200px;
90+
border-radius: 12px;
91+
overflow: hidden;
92+
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
93+
}
94+
95+
.demo-left {
96+
left: 10%;
97+
top: 50px;
98+
transform: rotate(-5deg);
99+
}
100+
101+
.demo-right {
102+
right: 10%;
103+
top: 100px;
104+
transform: rotate(5deg);
105+
}
106+
107+
.demo-left img, .demo-right img {
108+
width: 100%;
109+
height: 100%;
110+
object-fit: cover;
111+
}
112+
113+
.mosaic-grid {
114+
display: grid;
115+
grid-template-columns: repeat(4, 1fr);
116+
gap: 1rem;
117+
margin-top: 2rem;
118+
}
119+
120+
.mosaic-item {
121+
aspect-ratio: 1;
122+
border-radius: 8px;
123+
overflow: hidden;
124+
}
125+
126+
.mosaic-item img {
127+
width: 100%;
128+
height: 100%;
129+
object-fit: cover;
130+
}
131+
132+
@media (max-width: 768px) {
133+
.mosaic-grid {
134+
grid-template-columns: repeat(2, 1fr);
135+
}
136+
137+
.floating-demos {
138+
height: 300px;
139+
}
140+
141+
.demo-left, .demo-right {
142+
width: 150px;
143+
height: 150px;
144+
}
145+
}

assets/css/main.css

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
/* Basic styles for W2GenAI Lab website */
2+
body {
3+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
4+
margin: 0;
5+
padding: 0;
6+
line-height: 1.6;
7+
color: #333;
8+
}
9+
10+
.container {
11+
max-width: 1200px;
12+
margin: 0 auto;
13+
padding: 0 20px;
14+
}
15+
16+
header {
17+
background: #f8f9fa;
18+
padding: 2rem 0;
19+
border-bottom: 1px solid #e9ecef;
20+
}
21+
22+
nav ul {
23+
list-style: none;
24+
padding: 0;
25+
margin: 1rem 0 0 0;
26+
}
27+
28+
nav li {
29+
display: inline-block;
30+
margin-right: 2rem;
31+
}
32+
33+
nav a {
34+
text-decoration: none;
35+
color: #007bff;
36+
font-weight: 500;
37+
}
38+
39+
nav a:hover {
40+
text-decoration: underline;
41+
}
42+
43+
.hero {
44+
text-align: center;
45+
padding: 4rem 0;
46+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
47+
color: white;
48+
}
49+
50+
.hero h1 {
51+
font-size: 3rem;
52+
margin-bottom: 1rem;
53+
}
54+
55+
.hero p {
56+
font-size: 1.25rem;
57+
opacity: 0.9;
58+
}
59+
60+
.projects {
61+
padding: 4rem 0;
62+
}
63+
64+
.project-card {
65+
background: white;
66+
border-radius: 8px;
67+
padding: 2rem;
68+
margin-bottom: 2rem;
69+
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
70+
border: 1px solid #e9ecef;
71+
}
72+
73+
.project-card h3 {
74+
margin-top: 0;
75+
color: #495057;
76+
}
77+
78+
.project-card p {
79+
color: #6c757d;
80+
}
81+
82+
.btn {
83+
display: inline-block;
84+
background: #007bff;
85+
color: white;
86+
padding: 0.75rem 1.5rem;
87+
border-radius: 4px;
88+
text-decoration: none;
89+
font-weight: 500;
90+
transition: background-color 0.3s ease;
91+
}
92+
93+
.btn:hover {
94+
background: #0056b3;
95+
color: white;
96+
text-decoration: none;
97+
}
98+
99+
footer {
100+
background: #f8f9fa;
101+
text-align: center;
102+
padding: 2rem 0;
103+
border-top: 1px solid #e9ecef;
104+
color: #6c757d;
105+
}

0 commit comments

Comments
 (0)