← back to Goodquestion Ai
video-html/slides/sample-comparison.html
167 lines
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1920, height=1080">
<title>Manual vs Automated</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 1920px;
height: 1080px;
overflow: hidden;
background: #0B0B0F;
color: #E8E8ED;
font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
-webkit-font-smoothing: antialiased;
}
.slide {
width: 1920px;
height: 1080px;
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
overflow: hidden;
}
/* Animations */
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes growWidth {
from { width: 0; }
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
@keyframes pulseGlow {
0%, 100% { text-shadow: 0 0 20px rgba(0,212,255,0.3); }
50% { text-shadow: 0 0 40px rgba(0,212,255,0.6), 0 0 80px rgba(0,212,255,0.2); }
}
@keyframes slideInLeft {
from { opacity: 0; transform: translateX(-40px); }
to { opacity: 1; transform: translateX(0); }
}
@keyframes avatarFadeIn {
0% { opacity: 0; transform: scale(0.8); }
15% { opacity: 1; transform: scale(1); }
85% { opacity: 1; transform: scale(1); }
100% { opacity: 0; transform: scale(0.9); }
}
.avatar-container {
position: absolute;
bottom: 40px;
right: 40px;
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
border: 3px solid #00D4FF;
box-shadow: 0 0 30px rgba(0,212,255,0.3);
animation: avatarFadeIn 3s ease-in-out forwards;
z-index: 100;
}
.avatar-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
.slide-comparison {
background: radial-gradient(ellipse at 50% 40%, #111827 0%, #0B0B0F 70%);
}
.comparison-title {
font-size: 48px;
font-weight: 700;
color: #E8E8ED;
margin-bottom: 64px;
animation: fadeIn 0.6s ease-out 0.2s both;
}
.comparison-row {
display: flex;
align-items: center;
justify-content: center;
gap: 80px;
}
.comparison-side {
display: flex;
flex-direction: column;
align-items: center;
opacity: 0;
}
.comparison-before {
animation: fadeInUp 0.7s ease-out 0.4s both;
}
.comparison-after {
animation: fadeInUp 0.7s ease-out 0.8s both;
}
.comparison-value-before {
font-size: 80px;
font-weight: 800;
color: #6B7280;
}
.comparison-value-after {
font-size: 100px;
font-weight: 900;
color: #00D4FF;
}
.comparison-label {
font-size: 22px;
color: #6B7280;
margin-top: 12px;
text-transform: uppercase;
letter-spacing: 2px;
}
.comparison-arrow {
font-size: 64px;
color: #FF6B35;
opacity: 0;
animation: fadeIn 0.5s ease-out 0.6s both;
}
.comparison-badge {
margin-top: 48px;
padding: 12px 32px;
background: rgba(0, 230, 140, 0.15);
border: 2px solid #00E68C;
border-radius: 40px;
font-size: 28px;
font-weight: 700;
color: #00E68C;
opacity: 0;
animation: fadeInUp 0.6s ease-out 1.2s both;
}
</style>
</head>
<body>
<div class="slide slide-comparison">
<h2 class="comparison-title">Manual vs Automated</h2>
<div class="comparison-row">
<div class="comparison-side comparison-before">
<div class="comparison-value-before">40h</div>
<div class="comparison-label">Manual Process</div>
</div>
<div class="comparison-arrow">→</div>
<div class="comparison-side comparison-after">
<div class="comparison-value-after">12min</div>
<div class="comparison-label">Automated</div>
</div>
</div>
<div class="comparison-badge">200x faster</div>
</div>
</body>
</html>