<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI时代的程序员未来</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;700;900&family=Roboto:wght@400;700;900&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #00f2ff;
--secondary-color: #7000ff;
--accent-color: #ff00c8;
--bg-dark: #050a14;
--text-light: #ffffff;
--card-bg: rgba(255, 255, 255, 0.08);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
margin: 0;
font-family: 'Roboto', 'Noto Sans SC', sans-serif;
background-color: #000;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.poster-container {
width: 720px;
min-height: 960px;
background: radial-gradient(circle at top right, #1a1a40, #050a14 60%, #020008);
position: relative;
overflow: hidden;
color: var(--text-light);
display: flex;
flex-direction: column;
padding: 48px;
}
/* Background Decorations */
.bg-grid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
.glow-orb {
position: absolute;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, transparent 70%);
border-radius: 50%;
top: -100px;
left: -100px;
z-index: 0;
}
.glow-orb-2 {
position: absolute;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, transparent 70%);
border-radius: 50%;
bottom: 50px;
right: -50px;
z-index: 0;
}
/* Content Layer */
.content-layer {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
height: 100%;
gap: 32px;
}
/* Header */
header {
margin-bottom: 20px;
}
.tagline {
font-size: 20px;
color: var(--primary-color);
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 12px;
text-transform: uppercase;
display: flex;
align-items: center;
gap: 8px;
}
.tagline::before {
content: '';
display: block;
width: 24px;
height: 2px;
background: var(--primary-color);
}
h1 {
font-size: 56px;
line-height: 1.1;
font-weight: 900;
background: linear-gradient(135deg, #fff 30%, var(--primary-color) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 16px;
text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}
.subtitle {
font-size: 28px;
font-weight: 300;
color: rgba(255, 255, 255, 0.9);
display: flex;
align-items: center;
gap: 12px;
}
.subtitle strong {
color: var(--primary-color);
font-weight: 700;
}
/* Main Concept Card */
.hero-card {
background: linear-gradient(135deg, rgba(112, 0, 255, 0.2), rgba(0, 242, 255, 0.05));
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 32px;
backdrop-filter: blur(10px);
position: relative;
margin-top: 10px;
}
.hero-card::before {
content: '“';
position: absolute;
top: 10px;
left: 20px;
font-size: 80px;
color: rgba(255, 255, 255, 0.1);
font-family: serif;
line-height: 1;
}
.hero-content {
position: relative;
z-index: 1;
text-align: center;
}
.hero-title {
font-size: 24px;
color: rgba(255, 255, 255, 0.7);
margin-bottom: 8px;
}
.hero-main-text {
font-size: 42px;
font-weight: 900;
color: #fff;
line-height: 1.2;
margin-bottom: 0;
}
/* Timeline Section */
.section-title {
font-size: 24px;
font-weight: 700;
margin-bottom: 20px;
border-left: 4px solid var(--accent-color);
padding-left: 16px;
display: flex;
align-items: center;
}
.timeline-container {
display: flex;
gap: 16px;
}
.timeline-item {
flex: 1;
background: var(--card-bg);
border-radius: 16px;
padding: 24px;
border: 1px solid rgba(255, 255, 255, 0.05);
display: flex;
flex-direction: column;
gap: 12px;
}
.timeline-icon {
width: 48px;
height: 48px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
color: var(--primary-color);
}
.timeline-icon.purple {
color: var(--secondary-color);
}
.timeline-year {
font-size: 32px;
font-weight: 900;
color: rgba(255, 255, 255, 0.2);
}
.timeline-text {
font-size: 20px;
font-weight: 700;
color: #fff;
}
.timeline-desc {
font-size: 16px;
color: rgba(255, 255, 255, 0.6);
line-height: 1.4;
}
/* Analysis Section */
.analysis-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.analysis-card {
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 16px;
padding: 24px;
text-align: center;
}
.analysis-label {
font-size: 16px;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 8px;
}
.analysis-value {
font-size: 24px;
font-weight: 700;
line-height: 1.3;
}
.divider {
width: 1px;
background: rgba(255, 255, 255, 0.1);
}
/* Footer */
.footer-section {
margin-top: auto;
text-align: center;
background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.1), transparent);
padding: 24px;
border-radius: 16px;
border: 1px solid rgba(0, 242, 255, 0.2);
}
.footer-text {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 8px;
}
.footer-highlight {
font-size: 32px;
font-weight: 900;
background: linear-gradient(90deg, var(--primary-color), #fff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.icon-spacer {
margin-right: 8px;
vertical-align: middle;
}
</style>
</head>
<body>
<div class="poster-container">
<!-- Background Elements -->
<div class="bg-grid"></div>
<div class="glow-orb"></div>
<div class="glow-orb-2"></div>
<div class="content-layer">
<!-- Header -->
<header>
<div class="tagline">深度对话</div>
<h1>AI能写100%代码<br>程序员会失业吗?</h1>
<div class="subtitle">
<i class="material-icons">person</i>
对话UML之父 <strong>格雷迪·布奇</strong>
</div>
</header>
<!-- Hero Concept -->
<div class="hero-card">
<div class="hero-content">
<div class="hero-title">当硅谷叫嚣编程终结时</div>
<div class="hero-main-text">我们正迎来<br>第三个软件黄金时代</div>
</div>
</div>
<!-- History Timeline -->
<div>
<div class="section-title">
<i class="material-icons icon-spacer">history</i>
穿梭80年计算史
</div>
<div class="timeline-container">
<div class="timeline-item">
<div class="timeline-icon">
<i class="material-icons">rocket_launch</i>
</div>
<div class="timeline-year">60s</div>
<div class="timeline-text">阿波罗计划</div>
<div class="timeline-desc">软硬件解耦的里程碑,工程学的觉醒</div>
</div>
<div class="timeline-item">
<div class="timeline-icon purple">
<i class="material-icons">data_object</i>
</div>
<div class="timeline-year">90s</div>
<div class="timeline-text">面向对象崛起</div>
<div class="timeline-desc">复杂度的驯服,架构思维的普及</div>
</div>
</div>
</div>
<!-- Core Engineering Analysis -->
<div>
<div class="section-title">
<i class="material-icons icon-spacer">psychology</i>
工程的灵魂 vs AI的跃迁
</div>
<div class="analysis-grid">
<div class="analysis-card">
<div class="analysis-label">工程灵魂</div>
<div class="analysis-value">决策与平衡<br>Decision</div>
</div>
<div class="analysis-card">
<div class="analysis-label">AI影响</div>
<div class="analysis-value">抽象层级<br>大跃迁</div>
</div>
</div>
</div>
<!-- Footer -->
<div class="footer-section">
<div class="footer-text">守住想象力的护城河</div>
<div class="footer-highlight">从码农到系统架构师</div>
</div>
</div>
</div>
</body>
</html>
登录后可参与表态
讨论回复
1 条回复
✨步子哥 (steper)
#1
03-13 13:07
登录后可参与表态