-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhobbyblog.html
More file actions
394 lines (348 loc) · 11.4 KB
/
hobbyblog.html
File metadata and controls
394 lines (348 loc) · 11.4 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Anime Blog</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
}
.fade-in {
opacity: 0;
transform: translateY(30px);
animation: fadeIn 1.2s ease-out forwards;
}
@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
.post-card, .feature-post, aside img {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover, .feature-post:hover, aside img:hover {
transform: scale(1.03);
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.first {
background-image: linear-gradient(to right, white 0%, white 60%, #62b0eb 60%, #62b0eb 100%);
min-height: 825px;
}
header {
display: flex;
align-items: center;
padding: 20px;
}
header img {
width: 100px;
height: auto;
margin-right: 50px;
}
nav a {
margin-left: 30px;
text-decoration: none;
color: #3f3d3d;
font-weight: bold;
font-size: 15px;
}
nav a:hover {
color: #62b0eb;
}
.first-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding: 100px;
gap: 50px;
}
.first-content article {
flex: 1.2;
}
.first-content aside {
flex: 1;
padding: 20px;
border-radius: 8px;
}
.first-content p {
font-size: 22px;
color: #3f3d3d;
text-align: justify;
}
.first-content h1 {
font-size: 40px;
color: #3f3d3d;
}
aside img {
width: 100%;
border-radius: 8px;
}
.blog-section {
padding: 60px 80px;
background-color: #f9f9f9;
}
.blog-section h2 {
font-size: 32px;
margin-bottom: 30px;
color: #3f3d3d;
}
.blog-posts {
display: flex;
gap: 30px;
flex-wrap: wrap;
}
.post-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
flex: 1;
min-width: 280px;
max-width: 350px;
overflow: hidden;
}
.post-card img {
width: 100%;
height: 200px;
object-fit: cover;
}
.post-content {
padding: 20px;
}
.post-content h3 {
margin-top: 0;
color: #3f3d3d;
}
.post-content article {
font-size: 14px;
color: #555;
text-align: justify;
}
.feature-articles {
margin-top: 60px;
}
.feature-articles h2 {
font-size: 32px;
margin-bottom: 30px;
color: #3f3d3d;
}
.feature-post {
display: flex;
gap: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
margin-bottom: 30px;
overflow: hidden;
}
.feature-post img {
width: 300px;
object-fit: cover;
}
.feature-content {
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.feature-content h3 {
margin-top: 0;
color: #3f3d3d;
}
.feature-content p {
font-size: 16px;
color: #555;
text-align: justify;
}
footer {
background-color: #62b0eb;
color: white;
text-align: center;
padding: 20px;
}
footer a {
color: white;
text-decoration: underline;
margin: 0 10px;
font-weight: bold;
}
footer a:hover {
color: #e0e0e0;
}
.fade-in-scroll {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-scroll.show {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body>
<div class="first fade-in">
<header>
<img src="https://i.ibb.co/hJkX7WtS/aniblog-logo.png" alt="Anime Blog Logo">
<nav>
<a href="#home">Home</a>
<a href="#recent">Recent</a>
<a href="#featured">Featured</a>
</nav>
</header>
<main class="first-content" id="home">
<article>
<p><strong>WELCOME</strong></p>
<h1>This is AniBlog</h1>
<p>Your ultimate destination for all things anime and manga!
Dive into the world of your favorite series, discover new releases,
and connect with fellow fans. Whether you're a seasoned otaku or
just starting your journey, AniBlog has something for everyone.</p>
<p>Stay updated with the latest news, reviews, and discussions in
the anime community. Join us as we explore the vibrant universe
of anime and manga together!</p>
</article>
<aside>
<img src="https://i.ibb.co/BDBjfyS/dandadan.png" alt="Dandadan">
</aside>
</main>
</div>
<section class="blog-section" id="recent">
<h2>Recent Anime Posts</h2>
<div class="blog-posts">
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/zHNc8XPY/chainsaw-man.jpg" alt="Chainsaw Man">
<div class="post-content">
<h3>Chainsaw Man Review</h3>
<article>An unfiltered ride of blood, chaos, and emotion. Discover why Denji's journey is unlike any other shonen protagonist’s.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/HL8k4DLm/jujutsu-kaisen.jpg" alt="Jujutsu Kaisen">
<div class="post-content">
<h3>Jujutsu Kaisen Breakdown</h3>
<article>Delve deep into Gojo’s power, Sukuna’s mystery, and what makes this supernatural series so explosively good.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/fV26zz12/frieren.jpg" alt="Frieren">
<div class="post-content">
<h3>Why You Should Watch Frieren</h3>
<article>A quiet, melancholic look at what happens after the story ends. Frieren is fantasy storytelling at its finest.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/qLg5mVRX/spy-x-family.jpg" alt="Spy x Family">
<div class="post-content">
<h3>Spy x Family Season 2</h3>
<article>The Forger family returns in another heartwarming mix of comedy, action, and undercover missions.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/fdWgMS56/demon-slayer.jpg" alt="Demon Slayer">
<div class="post-content">
<h3>Demon Slayer: Swordsmith Arc</h3>
<article>Stunning animation and new demons push Tanjiro and friends to their limits. Here’s what stood out this arc.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/rGpyZYYv/bleach.jpg" alt="Bleach TYBW">
<div class="post-content">
<h3>Bleach: Thousand-Year Blood War</h3>
<article>Ichigo is back! Relive the excitement and epic battles as Bleach finally gets the adaptation fans waited years for.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/bgsyHmvg/attack-on-titan.jpg" alt="Attack on Titan">
<div class="post-content">
<h3>Final Thoughts on AoT</h3>
<article>A legacy of betrayal, war, and freedom. Here's what the ending of Attack on Titan means to us.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/GfKpxmFR/tokyo-revengers.jpg" alt="Tokyo Revengers">
<div class="post-content">
<h3>Tokyo Revengers: Season Recap</h3>
<article>Time travel, gangs, and heartbreak. Takemichi’s journey continues to twist fates in unexpected ways.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/KpyYcszN/mob-psycho.jpg" alt="Mob Psycho 100">
<div class="post-content">
<h3>Mob Psycho’s Emotional Finale</h3>
<article>A tale of growth, self-worth, and friendship. Mob’s journey ends with a powerful message for everyone.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/mC0wP6ht/blue-lock.jpg" alt="Blue Lock">
<div class="post-content">
<h3>Blue Lock: Ego and Evolution</h3>
<article>Sports anime reimagined. Blue Lock challenges what it means to play for glory — and yourself.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/hFGQfK9p/vinland-saga.webp" alt="Vinland Saga">
<div class="post-content">
<h3>Vinland Saga: Beyond Revenge</h3>
<article>Thorfinn’s transformation from warrior to peace-seeker offers one of anime’s most profound arcs.</article>
</div>
</div>
<div class="post-card fade-in-scroll">
<img src="https://i.ibb.co/qYGK8RvL/solo-leveling.webp" alt="Solo Leveling">
<div class="post-content">
<h3>Solo Leveling First Impressions</h3>
<article>From webtoon legend to anime debut — is Solo Leveling living up to the hype? Let’s break it down.</article>
</div>
</div>
</div>
<div class="feature-articles" id="featured">
<h2>Featured Articles</h2>
<div class="feature-post fade-in-scroll">
<img src="https://i.ibb.co/tM0Rh9Td/luffy-gear-5.webp" alt="One Piece Gear 5">
<div class="feature-content">
<h3>The Impact of Luffy’s Gear 5 Transformation</h3>
<p>One Piece hits a new peak with Luffy’s Gear 5 form. What does this mean for the future of the series and the anime industry as a whole?</p>
</div>
</div>
<div class="feature-post fade-in-scroll">
<img src="https://i.ibb.co/zhqLCm8Z/oshi-no-ko.jpg" alt="Oshi no Ko">
<div class="feature-content">
<h3>Oshi no Ko: A Dark Glimpse Behind the Idol Industry</h3>
<p>Oshi no Ko breaks expectations with a story that’s as thrilling as it is heartbreaking. We take a deep dive into the themes of fame and deception.</p>
</div>
</div>
<div class="feature-post fade-in-scroll">
<img src="https://i.ibb.co/7JPVmkVd/mahoraga.jpg" alt="Jujutsu Kaisen Mahoraga">
<div class="feature-content">
<h3>Explaining Mahoraga: Jujutsu Kaisen's Strongest Shikigami</h3>
<p>Mahoraga became a hot topic after recent episodes. Let’s break down its power, symbolism, and impact in the Jujutsu Kaisen universe.</p>
</div>
</div>
</div>
</section>
<footer>
<p>© 2025 AniBlog. All rights reserved. |
<a href="#">Privacy</a> |
<a href="#">Terms</a> |
<a href="#">Contact</a>
</p>
</footer>
<script>
const fadeIns = document.querySelectorAll('.fade-in-scroll');
function checkFadeIn() {
const triggerBottom = window.innerHeight * 0.85;
fadeIns.forEach(el => {
const boxTop = el.getBoundingClientRect().top;
if (boxTop < triggerBottom) {
el.classList.add('show');
} else {
el.classList.remove('show');
}
});
}
window.addEventListener('scroll', checkFadeIn);
window.addEventListener('load', checkFadeIn);
</script>
</body>
</html>