-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (113 loc) · 5.22 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kailash Sudhakar | Guest Lecture at SVCE | 3rd Feb 2025</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/impress.min.js" defer></script>
<style>
/* Global Styles */
body {
font-family: 'Arial', sans-serif;
color: white;
text-align: center;
margin: 0;
padding: 0;
transition: background 1s ease-in-out;
}
#impress .step {
width: 700px;
max-width: 1000px;
margin: auto;
padding: 80%;
border-radius: 10px;
transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
/* background: linear-gradient(135deg, #6a11cb, #2575fc); */
}
.step:not(.active) {
opacity: 0.2; /* Fade out non-active slides */
transform: scale(0.8);
}
.question {
font-size: 3em; /* Keep a consistent font size */
font-weight: bold;
margin-bottom: 20px;
}
.subtext {
font-size: 1.5em;
opacity: 0.9;
}
/* Gradient backgrounds for different slides */
.bg1 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.bg2 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.bg3 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.bg4 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.bg5 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.bg6 { background: linear-gradient(135deg, #6a11cb, #2575fc); }
</style>
</head>
<body class="bg1">
<div id="impress">
<!-- Slide 1: Introduction (Simple) -->
<div class="step bg1" data-x="0" data-y="0">
<h1> Hi! 👋 </h1>
</div>
<!-- Slide 2: Who are you? (Simple) -->
<div class="step bg2" data-x="1000" data-y="0">
<h2 class="question">🤔 Who are you?</h2>
<p class="subtext">Kailash Sudhakar | Data and Analytics Manager - Hasura | Founder - Kinsale Pvt Ltd | NGO supporter | Artist | Farmer </p>
</div>
<!-- Slide 3: What are you good at? (Rotate) -->
<div class="step bg3" data-x="2000" data-y="0" data-rotate="90">
<!-- <h2 class="question">💡 What is your success story?</h2> -->
<h2 class="question">💡 What is your <del>success</del> story?</h2>
<p class="subtext"> From working at BPO to GM + Hasura and beyond </p>
</div>
<!-- Slide 4: When do you choose to go abroad? (Scale + Rotate) -->
<div class="step bg4" data-x="3000" data-y="0" data-scale="1.5" data-rotate="180">
<h2 class="question">🏢 Startups or Tech Giants?</h2>
<p class="subtext">Risk vs Stability: Which one is for you?</p>
</div>
<!-- Slide 5: Startups or tech giants? (Translate + Scale) -->
<div class="step bg5" data-x="4000" data-y="1000" data-scale="2">
<h2 class="question">🎓 Do you need a Master's to go abroad?</h2>
<p class="subtext">Degree or skills? What truly matters?</p>
</div>
<!-- Slide 6: Do you need a master's to go abroad? (Rotate + Translate) -->
<div class="step bg6" data-x="5000" data-y="0" data-z="9000">
<h2 class="question">💰 What are current industry packages?</h2>
<p class="subtext">Are salaries worth the hype? Let’s break it down.</p>
</div>
<!-- Slide 9: How do you keep up with the industry? (Random Rotate + Scale) -->
<div class="step bg3" data-x="10000" data-y="0" data-scale="3">
<h2 class="question">📚 How do you keep up with the industry?</h2>
<p class="subtext">Trends change fast! Check HackerNews, Reddit and TheRunDown.ai</p>
</div>
<!-- Slide 10: What is the industry heading to? (Translate + Scale) -->
<div class="step bg4" data-x="12000" data-y="1000" data-z="1000" data-scale="3.2">
<h2 class="question">🔮 Where is the industry heading to?</h2>
<p class="subtext"> Let us explore PromptQL at Hasura</p>
</div>
<!-- Slide 11: Conclusion -->
<div class="step bg5" data-x="16000" data-y="0" data-scale="3.5">
<h1>🎯 amazing things happen to curious people!</h1>
<p>Any questions? Let’s discuss!</p>
</div>
</div>
<!-- Initialize impress.js AFTER the page loads -->
<script>
document.addEventListener("DOMContentLoaded", function () {
impress().init();
});
// Change background on slide transition
document.addEventListener("impress:stepenter", function(event) {
document.body.className = event.target.classList[1]; // Set background to match slide
// Ensure only the active slide is fully visible
document.querySelectorAll(".step").forEach(slide => {
slide.classList.remove("active");
});
event.target.classList.add("active");
});
</script>
</body>
</html>