forked from aslams2020/Stark-Tech-Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAchievements.html
194 lines (170 loc) · 6.49 KB
/
Achievements.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tony Stark's Remarkable Achievements</title>
<style>
/* Basic Styling */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
body {
background-image: url(assets/bg3.jpg);
color: #333;
padding: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
text-align: center;
margin-bottom: 20px;
color: #f5f5f5;
}
/* Card Styling */
.card {
display: flex;
align-items: center;
background-color: #09081fc5;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 20px 0;
padding: 20px;
width: 100%;
max-width: 1400px;
opacity: 0;
transform: translateY(30px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.card.visible {
opacity: 1;
transform: translateY(0);
}
/* Alternating Layout */
.card:nth-child(odd) {
flex-direction: row;
}
.card:nth-child(even) {
flex-direction: row-reverse;
}
.card img {
width: 150px;
height: 150px;
border-radius: 8px;
margin-right: 20px;
}
.card:nth-child(even) img {
margin-right: 0;
margin-left: 20px;
}
.card-content {
flex: 1;
}
.card h2 {
color: #007bff;
margin-bottom: 10px;
}
.card p {
color: #d3d1d1;
font-family: Arial, Helvetica, sans-serif;
}
.go-top-btn {
position: fixed;
bottom: 35px;
right: 35px;
cursor: pointer;
border-radius: 50%;
height: 60px;
width: 60px;
background: #ff0015;
border: none;
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.go-top-btn:hover {
background-color: #ac0000;
box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.25);
transform: translateY(-2px);
}
</style>
</head>
<body>
<button class="go-top-btn">
<img width="35px" src="cropped_image.png" alt="go top">
</button>
<h1>Tony Stark's Remarkable Achievements</h1>
<div class="card">
<img src="assets/arc-reactor.jpg" alt="Arc Reactor">
<div class="card-content">
<h2>Invented Arc Reactor</h2>
<p>The arc reactor is a compact, self-sustaining energy source created by Tony Stark. Originally designed to keep shrapnel from reaching his heart, it later powered the Iron Man suit. Stark's design revolutionized clean energy with nearly limitless potential. It became a symbol of his transition from arms dealer to humanitarian innovator.</p>
</div>
</div>
<div class="card">
<img src="assets/iron-man-suit-1.jpg" alt="Iron Man Suit">
<div class="card-content">
<h2 style="text-align: end;">Built the First Iron Man Suit</h2>
<p style="text-align: end;">Tony Stark built his first Iron Man suit while held captive, using scrap materials. The suit allowed him to escape and laid the foundation for future upgrades. His suits are equipped with advanced weaponry, flight capabilities, and artificial intelligence. Each iteration reflects Stark's genius, pushing the boundaries of human capability.</p>
</div>
</div>
<div class="card">
<img src="assets/stark-industries.png" alt="Stark Industries">
<div class="card-content">
<h2>Founded Stark Industries</h2>
<p>Stark Industries is a pioneering multinational corporation in tech and defense. Founded by Tony's father, Howard Stark, Tony expanded its reach globally. Under Tony’s leadership, the company shifted focus toward sustainable technologies and clean energy. Stark Industries remains a symbol of cutting-edge innovation in the tech world.</p>
</div>
</div>
<div class="card">
<img src="assets/jarvis.jpg" alt="J.A.R.V.I.S.">
<div class="card-content">
<h2 style="text-align: end;">Created J.A.R.V.I.S.</h2>
<p style="text-align: end;">J.A.R.V.I.S. (Just A Rather Very Intelligent System) is an AI assistant developed by Tony Stark. Initially managing household tasks, it evolved into an integral part of the Iron Man suits. J.A.R.V.I.S. handles complex operations, assists in combat, and analyzes data in real-time. It showcases Stark’s expertise in artificial intelligence and robotics.</p>
</div>
</div>
<div class="card">
<img src="assets/avengers-initiative.jpg" alt="Avengers Initiative">
<div class="card-content">
<h2>Avengers Initiative</h2>
<p>Tony Stark played a vital role in forming the Avengers, a team of Earth’s mightiest heroes. This initiative was a response to the growing threats beyond human control. His leadership and resources enabled the team to face formidable foes like Loki and Ultron. The Avengers Initiative is a testament to Stark’s belief in protecting humanity.</p>
</div>
</div>
<script>
// Scroll Animation JavaScript
const cards = document.querySelectorAll('.card');
const showCardsOnScroll = () => {
const triggerBottom = window.innerHeight * 0.85;
cards.forEach(card => {
const cardTop = card.getBoundingClientRect().top;
if (cardTop < triggerBottom) {
card.classList.add('visible');
}
});
};
window.addEventListener('scroll', showCardsOnScroll);
window.addEventListener('load', showCardsOnScroll);
//js for go top button
const goTopBtn = document.querySelector('.go-top-btn');
window.addEventListener('scroll', checkHeight)
function checkHeight() {
if (window.scrollY > 200) {
goTopBtn.style.display = "flex"
} else {
goTopBtn.style.display = "none"
}
}
goTopBtn.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: "smooth"
})
})
</script>
</body>
</html>