-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathofidtales.html
More file actions
1220 lines (1111 loc) · 48 KB
/
ofidtales.html
File metadata and controls
1220 lines (1111 loc) · 48 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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML>
<html lang="en-GB">
<!--Massively by HTML5 UP | html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)-->
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3KX9VK5CCH"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-3KX9VK5CCH');
</script>
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "OFiDCrypt",
"url": "https://www.ofidcrypt.com",
"logo": [
"https://www.ofidcrypt.com/assets/images/webp/ofidcrypt-digitized-logo.webp",
"https://www.ofidcrypt.com/assets/images/webp/bg-ofid-giddys.webp"
],
"sameAs": [
"https://x.com/OFiDCrypt",
"https://x.com/Giddys_CA",
"https://youtube.com/@OFiDCrypt",
"https://www.tiktok.com/@Giddys_CA",
"https://www.facebook.com/OFiDCrypt",
"https://linkedin.com/company/OFiDCrypt",
"https://www.instagram.com/OFiDCrypt"
]
}
</script>
<!-- Meta Description (for SEO) -->
<title>OFiDCrypt | Giddy's Universe Series and Shop</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description"
content="Meet Giddy, Tokin Junior, The Crew, and dive into their world! Discover unique stories, goods for kids, and get ready to join them on their Web3 adventures!">
<meta name="keywords"
content="cryptocurrency, Giddy's Shop, Buster, Giddy, blockchain, digital assets, OFiDCrypt, crypto community">
<meta name="author" content="Tokin">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="OFiDCrypt | Giddy's Universe Series and Shop">
<meta property="og:description"
content="Meet Giddy, Tokin Junior, The Crew, and dive into their world! Discover unique stories, goods for kids, and get ready to join them on their Web3 adventures!">
<meta property="og:image" content="https://www.ofidcrypt.com/assets/images/webp/bg-giddys.webp">
<meta property="og:url" content="https://www.ofidcrypt.com/ofidtales">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="OFiDCrypt | Giddy's Universe Series and Shop">
<meta name="twitter:description"
content="Meet Giddy, Tokin Junior, The Crew, and dive into their world! Discover unique stories, goods for kids, and get ready to join them on their Web3 adventures!">
<meta name="twitter:image" content="https://www.ofidcrypt.com/assets/images/webp/bg-giddys.webp">
<meta name="twitter:url" content="https://www.ofidcrypt.com/ofidtales">
<!-- Default ICO file with multiple sizes -->
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- Specific PNG sizes for modern browsers -->
<link rel="icon" type="image/png" sizes="1280x1280" href="/favicon.png">
<!-- Default Apple-Touch-Icon sizes -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<!-- Canonical Preferred URL -->
<link rel="canonical" href="https://www.ofidcrypt.com/ofidtales">
<!-- Stylesheets -->
<link rel="stylesheet" href="/assets/css/main.css">
<noscript>
<link rel="stylesheet" href="/assets/css/noscript.css">
</noscript>
<!-- JavaScript Libraries -->
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Meta Language -->
<meta http-equiv='content-language' content='en-gb'>
</head>
<body>
<!-- ANTI-FLICKER SCRIPT - Put this as high as possible -->
<script>
(function () {
// Apply dark mode BEFORE the page paints
if (localStorage.getItem('dark-mode') === 'true') {
document.documentElement.classList.add('dark-mode');
document.body.classList.add('dark-mode');
}
})();
</script>
<!-- Content Container -->
<div id="wrapper">
<!-- Background Layer - Restored -->
<div class="bg fixed"></div>
<!-- Header Subpage-->
<header class="header-subpage">
<a href="/index.html">
<img src="/assets/images/giddys-intro-rnd-lrg.PNG" alt="Giddy's Universe Logo" class="logo">
</a>
</header>
<!-- Your Dark Mode Toggle Button -->
<a href="#darkModePanel" id="darkModeToggle" class="alt">
<i class="fas fa-sun"></i>
</a>
<!-- Nav -->
<nav id="nav">
<ul class="links">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="ofidtales.html">Giddy's TV & Toys</a></li>
<li><a href="explore.html">Wallets & Apps</a></li>
<li><a href="bouncyball.html">Tokens</a></li>
<li><a href="/pages/about.html">About Us</a></li>
</ul>
<!-- Social Brands (Custom) -->
<ul class="icons top-icons">
<li class="top-toggle">
<a href="#" aria-label="Dark-Light Desktop Toggle Button">
<img src="/assets/images/darklight-toggle01.svg" alt="Dark-Light Desktop Toggle Button"
class="custom-site-icon">
</a>
</li>
<li class="top-hvr">
<a href="https://www.ofidcrypt.ca" aria-label="Hvr">
<img src="/assets/images/hvr-logo01.svg" alt="Hvr Logo" class="custom-site-icon">
</a>
</li>
<!-- Social Brands (Standard) -->
</ul>
<ul class="icons">
<li><a href="https://x.com/OFiDCrypt" class="icon brands fa-x-twitter"><span class="label">X</span></a>
</li>
<li><a href="https://youtube.com/@OFiDCrypt" class="icon brands fa-youtube"><span
class="label">YouTube</span></a>
</li>
<li><a href="https://www.tiktok.com/@Giddys_CA" class="icon brands alt fa-tiktok"><span
class="label">TikTok</span></a></li>
<li><a href="https://www.facebook.com/OFiDCrypt" class="icon brands alt fa-facebook-f"><span
class="label">Facebook</span></a></li>
<li><a href="https://linkedin.com/company/OFiDCrypt" class="icon brands alt fa-linkedin"><span
class="label">LinkedIn</span></a></li>
</ul>
<!-- Footer Links -->
<ul class="footer-links">
<li class="footer-info-link">
<a href="#copyright">Docs | News & PR | Partners | Privacy</a>
</li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Scrolling Ad Banner -->
<div id="expb-ball" class="ad-banner-wrapper">
<div class="ad-scroll-container">
<a href="https://shop.ledger.com/pages/ledger-nano-s-plus/?r=aa8d4fce2d9a&tracker=ofid_banner_index"
class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/ledger-nano-s-plus.png" alt="Ad Banner 1"
style="max-width: 100%; height: auto;">
</a>
<a href="https://kraken.pxf.io/xLox1A" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/kraken-banner-01.PNG" alt="Ad Banner 2"
style="max-width: 100%; height: auto;">
</a>
<a href="https://freeproducer.ca/" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/banner-free-producer.PNG" alt="Ad Banner 3"
style="max-width: 100%; height: auto;">
</a>
<a href="/bouncyball.html#buy-expb" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/expb-banner-01.png" alt="Ad Banner 4"
style="max-width: 100%; height: auto;">
</a>
<a href="https://t.co/gQBLmw20Qp" class="ad-slide" style="border-bottom: none;">
<img src="/assets/images/dobby-banner-01.png" alt="Ad Banner 5"
style="max-width: 100%; height: auto;">
</a>
</div>
</div>
<!-- Section Title -->
<section class="post">
<header class="major">
<!-- Smaller Sub-Heading B-W -->
<h1 class="center-aligned header-tight classy-font">
<span class="smaller-heading-bw">Giddy's Series & Shop</span>
</h1>
<!-- Status Message -->
<div id="statusMessage" class="status-message">
<div class="status-inner">
<button id="statusClose" class="status-close">×</button>
<p class="status-text">
Welcome! We're new — and Giddy’s Shop is in development. Meanwhile, watch our
<a href="/ofidtales.html#giddys-tv" class="status-link">animated adventures</a> and meet
Giddy!
We encourage you to read our
<a href="/discover.html#article-featured" class="status-link">Solana article</a>
for a sneak peek at the future of money — thanks for your patience!
</p>
<label class="status-optout">
<input type="checkbox" id="statusOptOut">
<span>Do not show again</span>
</label>
</div>
</div>
<h1>Toys & Tales <br />Connecting Families</h1>
<p><a href="/index.html#home">Home</a> > <b>Giddy's</b></p>
<p>Welcome to her world — the first of its kind, a bright new star where imagination, play, tech,
shopping, and family fun come together!</p>
<!-- YouTube Adaptation -->
<section class="youtube-iframe" id="latest-event">
<div class="stream video main">
<div id="player"></div>
<img id="poster-image" src="../assets/images/giddys-vignettes-poster.jpg"
alt="Giddy's Vignetes Poster Image" style="display: none;">
</div>
</section>
<script>
// Load YouTube IFrame Player API asynchronously
var tag = document.createElement('script');
tag.src = "https://www.youtube.com/iframe_api";
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
// Global variable for the YouTube player
var player;
// Reusable END handler
function onPlayerStateChange(event) {
if (event.data === YT.PlayerState.ENDED) {
// Remove iframe completely
const playerEl = document.getElementById('player');
playerEl.innerHTML = "";
playerEl.style.display = 'none';
// Show poster
const poster = document.getElementById('poster-image');
if (poster) poster.style.display = 'block';
}
}
// Called when YouTube API is loaded
function onYouTubeIframeAPIReady() {
player = new YT.Player('player', {
videoId: 'jPERhPYWC7Q',
playerVars: {
'playsinline': 1,
'rel': 0,
'controls': 1,
'modestbranding': 1, // Removes the standard center overlay logo watermark
'iv_load_policy': 3 // Disables interactive popups and video annotations completely
},
events: {
'onReady': function (event) {
// Sizing ratios are calculated dynamically by native CSS aspect ratio engines
},
'onStateChange': onPlayerStateChange
}
});
}
// Ensure poster properties sync up cleanly on initial page generation
document.addEventListener('DOMContentLoaded', function () {
const posterImage = document.getElementById('poster-image');
if (posterImage) {
posterImage.style.display = 'none';
}
});
// Replay handler — cleans layout parameters up and reconstructs player safely
document.getElementById('poster-image').addEventListener('click', function () {
this.style.display = 'none';
player = new YT.Player('player', {
videoId: 'jPERhPYWC7Q',
playerVars: {
'playsinline': 1,
'rel': 0,
'controls': 1,
'modestbranding': 1,
'iv_load_policy': 3
},
events: { 'onStateChange': onPlayerStateChange }
});
document.getElementById('player').style.display = 'block';
});
</script>
<p>Enjoy short videos including our Giddy Tales Series; real world and mythical adventures combine,
featuring <a href=" /ofidkid.html"> Tokin Junior</a> — plus branded goods for kids from
Giddy's Shop!
</p>
</header>
<!-- Giddy's TV: Series & Shorts -->
<section id="giddys-tv" class="giddys-quick-section">
<header class="major" style="text-align: center; margin-bottom: 2rem;">
<!-- Smaller Sub-Heading B-W -->
<h1 class="center-aligned header-tight classy-font">
<span class="link-smaller-heading-bw">
<a href="#giddys-shop" class="jump-link">Animated Adventures ⤵</a>
</span>
</h1>
<h2>Giddy's TV: Series & Shorts</h2>
<p>Explore our selection of animated content and meet the crew!</p>
</header>
<div class="giddys-quick-grid">
<div class="giddys-quick-card"
onclick="window.open('https://youtube.com/playlist?list=PL1J59SpewhZZzqA4x_589IlV15aqy_IaZ&si=oMXEhaX83JTfr5XD', '_blank')">
<img src="/assets/images/ofidtales-shorts.PNG" alt="Giddy Shorts">
<div class="card-content">
<h3>Mini Series</h3>
<p>
#GiddyOnEarth <br><i class="fa-brands fa-youtube"></i> YouTube
</p>
</div>
<span class="card-action">Watch Now →</span>
</div>
<div class="giddys-quick-card"
onclick="window.open('https://youtube.com/playlist?list=PL1J59SpewhZaxjWM1GCjXnGu2dWjDklAi&si=uhmRaLQOq5S27LCN', '_blank')">
<img src="/assets/images/giddys-vignettes.jpg" alt="Giddy's Vignettes">
<div class="card-content">
<h3>Mini Series</h3>
<p>
Giddy's Vignettes <br><i class="fa-brands fa-youtube"></i> YouTube
</p>
</div>
<span class="card-action">Watch Now →</span>
</div>
<style>
p i.fa-youtube {
margin-right: 6px;
color: #ff0000;
/* optional YouTube red */
}
</style>
<div class="giddys-quick-card"
onclick="document.querySelector('#intro-video')?.scrollIntoView({behavior: 'smooth'})">
<img src="/assets/images/giddy-tales-poster.PNG" alt="Giddy Tales Poster">
<div class="card-content">
<h3>Giddy Tales</h3>
<p>See it here first on Giddy's TV!</p>
</div>
<span class="card-action">View Series →</span>
</div>
<div class="giddys-quick-card"
onclick="document.querySelector('#meet-crew')?.scrollIntoView({behavior: 'smooth'})">
<img src="/assets/images/ofid-crew-characters.png" alt="The Crew">
<div class="card-content">
<h3>The Crew</h3>
<p>Meet the heroes of Giddy's Universe!</p>
</div>
<span class="card-action">Profiles →</span>
</div>
</div>
</section>
<!-- Giddy's Toys & Games -->
<section id="giddys-shop" class="giddys-quick-section">
<header class="major" style="text-align: center; margin-bottom: 2rem;">
<!-- Smaller Sub-Heading B-W -->
<h1 class="center-aligned header-tight classy-font">
<span class="link-smaller-heading-bw">
<a href="#giddys-tv" class="jump-link">Shopping & Entertainment ⤵</a>
</span>
</h1>
<h2>Giddy's Toys & Games</h2>
<p>Bring Giddy to life in your home and on screen!</p>
</header>
<div class="giddys-quick-grid">
<div class="giddys-quick-card" onclick="window.location.href='/shop.html'">
<img src="/assets/images/webp/giddys-shop-tile.webp" alt="Giddy's Shop">
<div class="card-content">
<h3>Giddy's Shop</h3>
<p>Series Goods & Toys</p>
</div>
<span class="card-action">Browse →</span>
</div>
<div class="giddys-quick-card" onclick="window.location.href='../game/play.html'">
<img src="/assets/images/giddys-blinko-logo.PNG" alt="Blinko Game">
<div class="card-content">
<h3>Giddy's Blinko Game</h3>
<p>Play Giddy's Blinko!</p>
</div>
<span class="card-action">Play Now →</span>
</div>
</div>
</section>
<!-- Quick Start Section -->
<section class="quick-start-section">
<header id="intro-video">
<h2>Intro: King Laine & Big Bahbreh</h2>
<p>As our universe expands, we're bringing you more exciting adventures and stories! Meet our
antagonists King Laine and Big Bahbreh in this animated short!</p>
<!-- Video container with poster overlay -->
<div class="video-main video-hosted-portrait">
<video id="myVideo" controls playsinline preload="metadata">
<source src="../assets/videos/ofid-tales-king-laine-teaser.MP4" type="video/mp4">
Your browser does not support the video tag.
</video>
<!-- Poster overlay (visible before play and after video ends) -->
<img class="video-poster-overlay" src="../assets/images/bg-poster-giddys-showman.jpg"
alt="OFiDCrypt Intro Video Poster">
</div>
</header>
<!-- JavaScript to control poster visibility -->
<script>
document.addEventListener('DOMContentLoaded', function () {
const video = document.getElementById('myVideo');
const container = video.parentElement; // .video-hosted-portrait
// Hide poster when video starts playing
video.addEventListener('play', function () {
container.classList.add('playing');
});
// Show poster again when video ends
video.addEventListener('ended', function () {
video.currentTime = 0; // Rewind to start (optional)
container.classList.remove('playing');
});
// Optional: If user pauses mid-video, keep video visible (don't show poster)
// Only show poster again if it actually ended
video.addEventListener('pause', function () {
if (!video.ended) {
// Still playing content visible if paused mid-video
container.classList.add('playing');
}
});
});
</script>
<!-- TikTok Embed - FEATURED
<div class="tiktok-videos-container">-->
<!-- Video 1 - TikTok Embed
<div class="tiktok-video-wrapper">
<header class="tiktok-header">
<h2>Intro: Giddy's Universe</h2>
</header>
<div class="tiktok video main">
<blockquote class="tiktok-embed"
cite="https://www.tiktok.com/@giddys_ca/video/7550415000519691538"
data-video-id="7550415000519691538" style="max-width: 605px;min-width: 325px;">
<section> <a target="_blank" title="@giddys_ca"
href="https://www.tiktok.com/@giddys_ca?refer=embed">@giddys_ca</a>
INTRODUCING:
Giddy Tales 🪄 Presented by @OFiDCrypt e𝕏P Web3™ & Giddy’s of
Giddy’s
Universe—Series & Shop 🛍️ Animated stories available across socials
and books
through online stores! <a title="giddys" target="_blank"
href="https://www.tiktok.com/tag/giddys?refer=embed">#Giddys</a> <a
title="toys" target="_blank"
href="https://www.tiktok.com/tag/toys?refer=embed">#Toys</a> <a
title="books" target="_blank"
href="https://www.tiktok.com/tag/books?refer=embed">#Books</a> <a
title="stories" target="_blank"
href="https://www.tiktok.com/tag/stories?refer=embed">#Stories</a>
<a title="kids" target="_blank"
href="https://www.tiktok.com/tag/kids?refer=embed">#kids</a>
@lilionethcore
@Linda-Marie Emmerson @Crypto.com @Lillicity @HARRISON EUGENE <a target="_blank"
title="♬ Rockin - Chris Alan Lee"
href="https://www.tiktok.com/music/Rockin-6777263935914510337?refer=embed">♬
Rockin - Chris Alan Lee</a>
</section>
</blockquote>
<script async src="https://www.tiktok.com/embed.js"></script>
<script async src="https://www.tiktok.com/embed.js"></script>
</div>
</div>
</div>
-->
<!-- TikTok Embed - EPISODES - BLOCK 2
<div class="tiktok-videos-container-pair" id="giddy-tales"> -->
<!-- Third TikTok Embed
<div class="tiktok-video-wrapper" id="ep1">
<header class="tiktok-header">
<h2>Ep. 1: Grampa's Attic</h2>
</header>
<div class="tiktok video main">
<blockquote class="tiktok-embed"
cite="https://www.tiktok.com/@giddys_ca/video/7550422618852183314"
data-video-id="7550422618852183314" style="max-width: 605px;min-width: 325px;">
<section> <a target="_blank" title="@giddys_ca"
href="https://www.tiktok.com/@giddys_ca?refer=embed">@giddys_ca</a>
Giddy Tales
S1 Ep.1 🪄 THE STORY BEGINS! “GiddyVerse Origins” is the first book in
the series!
Enjoy video shorts across socials as we turn the pages—Grampa has a
secret; and the
truth behind a Magical Bouncy Ball begins in “Grampa’s Attic!” Check out
Giddys.Shop
where stories and narratives can be bought to own! <a title="kids"
target="_blank" href="https://www.tiktok.com/tag/kids?refer=embed">#Kids</a>
<a title="giddys" target="_blank"
href="https://www.tiktok.com/tag/giddys?refer=embed">#Giddys</a>
<a title="stories" target="_blank"
href="https://www.tiktok.com/tag/stories?refer=embed">#Stories</a>
<a title="adventure" target="_blank"
href="https://www.tiktok.com/tag/adventure?refer=embed">#Adventure</a>
<a title="books" target="_blank"
href="https://www.tiktok.com/tag/books?refer=embed">#Books</a>
@OFiDCrypt e𝕏P
Web3™ @lilionethcore @Linda-Marie Emmerson @Crypto.com @Lillicity
@HARRISON EUGENE
@DeFi Space @Crypto Mason @Grampa <a target="_blank"
title="♬ Magic Kingdom Melody - Ausku Studio"
href="https://www.tiktok.com/music/Magic-Kingdom-Melody-7356176880491612186?refer=embed">♬
Magic Kingdom Melody - Ausku Studio</a>
</section>
</blockquote>
<script async src="https://www.tiktok.com/embed.js"></script>
</div>
</div>
</div>-->
<!-- TikTok Embed - EPISODES - BLOCK 1 -->
<!-- First TikTok Embed
<div class="tiktok-videos-container-pair" id="giddy-tales">
<div class="tiktok-video-wrapper" id="ep1">
<header class="tiktok-header">
<h2>Ep. 1: Rex's Sunny Day</h2>
</header>
<div class="tiktok video main">
<blockquote class="tiktok-embed"
cite="https://www.tiktok.com/@Giddys_CA/video/7503781058953891127"
data-video-id="7503781058953891127" style="max-width: 605px;min-width: 325px;">
<section> <a target="_blank" title="@Giddys_CA"
href="https://www.tiktok.com/@Giddys_CA?refer=embed">@Giddys_CA</a> GIDDY
TALES
🪄 Rex’s Sunny
Day ☀️ “Sometimes we need to take a moment to unwind; stop and take a breath” 😊
<a title="inspiration" target="_blank"
href="https://www.tiktok.com/tag/inspiration?refer=embed">#inspiration</a>
<a title="anxiety" target="_blank"
href="https://www.tiktok.com/tag/anxiety?refer=embed">#anxiety</a>
<a title="sunny" target="_blank"
href="https://www.tiktok.com/tag/sunny?refer=embed">#sunny</a> <a
title="Giddys_CA" target="_blank"
href="https://www.tiktok.com/tag/Giddys_CA?refer=embed">#Giddys_CA</a> <a
title="web3" target="_blank"
href="https://www.tiktok.com/tag/web3?refer=embed">#web3</a> <a title="crypto"
target="_blank" href="https://www.tiktok.com/tag/crypto?refer=embed">#crypto</a>
<a title="cute" target="_blank"
href="https://www.tiktok.com/tag/cute?refer=embed">#cute</a> <a
title="animation" target="_blank"
href="https://www.tiktok.com/tag/animation?refer=embed">#animation</a> <a
title="kidsoftiktok" target="_blank"
href="https://www.tiktok.com/tag/kidsoftiktok?refer=embed">#kidsoftiktok</a>
<a title="fyp" target="_blank"
href="https://www.tiktok.com/tag/fyp?refer=embed">#fyp</a> <a title="foryoupage"
target="_blank"
href="https://www.tiktok.com/tag/foryoupage?refer=embed">#foryoupage</a>
@OFiDCrypt
e𝕏P Web3™
@Linda-Marie Emmerson @Lillicity @DeFi Space <a target="_blank"
title="♬ [Animals and dishes] Cute BGM - Sound Owl"
href="https://www.tiktok.com/music/Animals-and-dishes-Cute-BGM-6817143279088306177?refer=embed">♬
[Animals and dishes] Cute BGM - Sound Owl</a>
</section>
</blockquote>
</div>
</div>
-->
<!-- Second TikTok Embed
<div class="tiktok-video-wrapper" id="ep2">
<header class="tiktok-header">
<h2>Ep. 2: A Giddy Dream</h2>
</header>
<div class="tiktok video main">
<blockquote class="tiktok-embed"
cite="https://www.tiktok.com/@Giddys_CA/video/7504815396604644663"
data-video-id="7504815396604644663" style="max-width: 605px;min-width: 325px;">
<section> <a target="_blank" title="@Giddys_CA"
href="https://www.tiktok.com/@Giddys_CA?refer=embed">@Giddys_CA</a> GIDDY
TALES
# A Giddy Dream
😴⛅️
"Hard work may pose challenges but we push through them towards our goals!" ☺️
<a title="inspiration" target="_blank"
href="https://www.tiktok.com/tag/inspiration?refer=embed">#inspiration</a>
<a title="anxiety" target="_blank"
href="https://www.tiktok.com/tag/anxiety?refer=embed">#anxiety</a> <a
title="sunny" target="_blank"
href="https://www.tiktok.com/tag/sunny?refer=embed">#sunny</a> <a
title="Giddys_CA" target="_blank"
href="https://www.tiktok.com/tag/Giddys_CA?refer=embed">#Giddys_CA</a> <a
title="web3" target="_blank"
href="https://www.tiktok.com/tag/web3?refer=embed">#web3</a> <a title="crypto"
target="_blank" href="https://www.tiktok.com/tag/crypto?refer=embed">#crypto</a>
<a title="cute" target="_blank"
href="https://www.tiktok.com/tag/cute?refer=embed">#cute</a> <a
title="animation" target="_blank"
href="https://www.tiktok.com/tag/animation?refer=embed">#animation</a> <a
title="kidsoftiktok" target="_blank"
href="https://www.tiktok.com/tag/kidsoftiktok?refer=embed">#kidsoftiktok</a>
<a title="fyp" target="_blank"
href="https://www.tiktok.com/tag/fyp?refer=embed">#fyp</a> <a title="foryoupage"
target="_blank"
href="https://www.tiktok.com/tag/foryoupage?refer=embed">#foryoupage</a>
@OFiDCrypt e𝕏P Web3™
@Linda-Marie Emmerson @Lillicity @DeFi Space @Crypto Mason @TheCryptoChik
@Crypto
Vic <a target="_blank" title="♬ Dreaming - The Ting Tings"
href="https://www.tiktok.com/music/Dreaming-7488001262270941185?refer=embed">♬
Dreaming - The
Ting
Tings</a>
</section>
</blockquote>
</div>
</div>
</div>
-->
<!-- Quick Start Section
<section class="quick-start-section" id="meet-crew">
<header>
<h2>Meet the Crew!</h2>
<p>Select the characters below to learn more about them and their quirks!</p>
</header>
<div class="quick-start-items">
<article class="quick-start-item"> <span class="image left"><img
src="/assets/images/crew-giddy-new.jpg" alt="OFiD Crew Giddy Character"></span>
<div class="quick-start-content">
<h3 class="quick-start-title">Giddy</h3>
<p class="align-center">Pink, Cute & Quirky!</p> <button class="round-button"><a
href="#giddy">View Profile</a></button>
</div>
</article>
<article class="quick-start-item"> <span class="image left" id="expb-get"><img
src="/assets/images/crew-buster-new.jpg" alt="OFiD Crew Buster Character"></span>
<div class="quick-start-content">
<h3 class="quick-start-title">Buster Bounce</h3>
<p class="align-center">Friendly, Fluffy & Tough!</p>
<button class="round-button"><a href="#buster">View Profile</a></button>
</div>
</article>
<article class="quick-start-item"> <span class="image left"><img
src="/assets/images/crew-rex-new.jpg" alt="OFiD Crew Rex Character"></span>
<div class="quick-start-content">
<h3 class="quick-start-title">Rex</h3>
<p class="align-center">Pretty Fly for a Shy Guy!</p> <button class="round-button"><a
href="#rex">View Profile</a></button>
</div>
</article>
</section>
-->
<!-- OFiD Crew Section -->
<section class="partner-section" id="meet-crew">
<header>
<h2>Characters</h2>
</header>
<!-- Horizontal Scroll Container -->
<div class="scroll-container">
<!-- Box 1: Giddy -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<span class="image"><img src="assets/images/ofidtales-giddy.PNG"
alt="OFiD Crew Giddy Character"></span>
<h3>Giddy</h3>
<p>
Giddy is the fun-loving, happy-go-lucky member of the OFiD Crew,
bringing joy and
excitement wherever she goes.
Adorned in vibrant shades of purple, pink, and teal, Giddy is a burst of
color and
energy. She is never seen without
her beloved bouncy ball, which she carries with her on all her
adventures. Giddy's
infectious enthusiasm and playful
nature make her the life of the party, always finding a way to make
everyone smile.
Whether it's cracking jokes or
leading the crew in a spontaneous dance-off, Giddy, also known as "She
Giddy," knows
how to keep spirits high and
create unforgettable memories. Her positive outlook and carefree
attitude make her
an indispensable member of the OFiD Crew.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
<!-- Box 2: Buster -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<span class="image"><img src="assets/images/ofidtales-buster.PNG"
alt="OFiD Crew Buster Character"></span>
<h3>Buster the Bouncer</h3>
<p>
Buster is the rugged bouncer of the OFiD Crew, known for his tough
exterior and
heart of gold. With striking teal and
purple colors, Buster stands out in any crowd. He dons a leather jacket
that adds to
his tough persona, but don't let
his appearance fool you—Buster, also known as "Buster Bounce," is
fiercely loyal and
protective of his friends.
As the unofficial guardian of the OFiD Crew on Telegram, Buster ensures
that
everyone stays safe while having a great time.
With his no-nonsense attitude and strong sense of duty, Buster is the
backbone of
the crew, always ready to step in and lend a hand.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
<!-- Box 3: Rex -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<span class="image"><img src="assets/images/ofidtales-rex.PNG"
alt="OFiD Crew Rex Character"></span>
<h3>Rex</h3>
<p>
Rex is the cute and shy member of the OFiD Crew, always wearing his
denim vest and
glasses. With this look and his short,
soft fur and striking red color, he is often seen as a stern and serious
figure!
Though introverted by nature, Rex is
incredibly smart and loves to give people the rundown of the latest tech
specs.
Speaking of which, Rex's specs, or glasses,
are a charming and essential part of his look, enhancing both his vision
and his
approachable demeanor.
Rex, also known as "He-Rex," struts about with growing confidence and
leadership. He
might be soft-spoken, but his actions
speak volumes, making him an invaluable member of the OFiD Crew.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
<!-- Box 4: Grampa -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<span class="image"><img src="assets/images/ofidtales-grampa.PNG"
alt="OFiD Crew Grampa Character"></span>
<h3>Grampa</h3>
<p>
Grampa is a wise, warm-hearted elder figure from Earth in the Giddy's Universe
lore, often tied to "Grampa’s Attic" origins. He's a supportive, savvy
grandpa-type character—think coffee-sipping, storytelling family patriarch—who
connects deeply with Tokin Junior and inspires creativity across the community.
Despite his grounded, folksy vibe, he's linked to magical elements like the
Bouncy Ball that sparks adventures in the Giddyverse. He's portrayed as
positive, encouraging, and a bit mysterious, with ties to heroism and Web3
education themes.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
<!-- Box 5: Tokin Junior -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<a href="/ofidkid.html">
<span class="image">
<img src="assets/images/ofidtales-baby-tokin.PNG"
alt="OFiD Crew Tokin Junior Character">
</span>
</a>
<h3>Tokin Junior</h3>
<p>Tokin Junior is the adventurous, joyous heart of the OFiD Crew, spreading
happiness
with every laugh and milestone. A lover of bananas, peaches, and blueberries,
his
favorite treats mirror his sweet nature. Tokin’s curiosity knows no
bounds—mastering
crawling, standing, and even his first steps, he’s always on the move. His
infectious giggles, spirited "Mama!" calls, and love for exploring create
countless
cherished moments. Whether it’s delighting in Buster's hat or scaling new
heights,
Tokin Junior’s boundless energy and charm light up every room, making him the
crew’s
cherished little explorer and genuine leader.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
<!-- Box 6: King Laine -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<span class="image"><img src="assets/images/ofidtales-king-laine.PNG"
alt="OFiD Crew King Laine Character"></span>
<h3>King Laine</h3>
<p>
King Laine is the menacing main antagonist in the Giddy's Universe series.
Crowned dramatically (first appearing during a Pump.fun "King of the Hill"
moment), he's a power-hungry ruler obsessed with seizing the one magical Bouncy
Ball to plunge the world into eternal darkness and flames. He commands a herd of
Bahbreh sheep minions—including Big Bahbreh, Armoured Bahbreh, and swarms of
little ones—who serve as his chaotic enforcers. He's the ultimate villain foil
to Giddy and her heroic team (Giddy, Buster, Rex), driving epic clashes in
shorts like GIDDYonEarth and tales of conquest vs. protection.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
<!-- Box 7: Big Bahbreh -->
<article class="scroll-box">
<button class="scroll-arrow left" aria-label="Scroll Left"><i
class="fas fa-arrow-left"></i></button>
<div class="box-content">
<span class="image"><img src="assets/images/ofidtales-big-bahbreh.jpg"
alt="OFiD Crew Bahbreh Character"></span>
<h3>Big Bahbreh</h3>
<p>
Big Bahbreh is the massive, commanding leader of King Laine's sheep minion herd
in Giddy's Universe—a hulking, fluffy enforcer with thick white wool, dark face,
curved horns, and beady eyes that mix cute charm with sinister menace. As the
king's loyal right-hand ram, he's the powerful, cunning muscle driving every
plot to capture Giddy's one magical Bouncy Ball, leading fiery stampedes and
ambushes to fuel a world of eternal darkness and flames. Under his rule swarm
the Minion Bahbrehs: bouncy lil' scouts in packs, tough Armoured warriors with
spikes, and the core fluffy flock—all creamy wool, black faces, tiny horns, and
deceptive adorableness that turns ruthless in overwhelming numbers,
trap-setting, and portal-spawned chaos. Inspired by quirky family stuffed toys
that birthed the lore, they bring humorous villainy to Giddy Tales shorts,
collectible cards, Giddy's Blinko game, and upcoming worlds in
the epic light-vs-darkness battle.
</p>
</div>
<button class="scroll-arrow right" aria-label="Scroll Right"><i
class="fas fa-arrow-right"></i></button>
</article>
</div>
</section>
<script>
document.addEventListener('DOMContentLoaded', () => {
const container = document.querySelector('.scroll-container');
const slides = document.querySelectorAll('.scroll-box');
const totalSlides = slides.length;
// Exit if no slides
if (totalSlides === 0) {
console.warn('No slides found in .scroll-container');
return;
}
// Force start on Box 1
function setInitialPosition() {
container.scrollTo({ left: 0, behavior: 'instant' });
updateArrowStates();
}
// Scroll by one box width based on screen size
function getBoxWidth() {
if (window.innerWidth > 768) {
return slides[0].offsetWidth + 10; // Desktop: Box width + gap
} else if (window.innerWidth <= 480) {
return 260 + 20; // Mobile: Box width + gap
} else {
return slides[0].offsetWidth; // Mid-range: Stacked box width
}
}
// Update arrow states based on current scroll position
function updateArrowStates() {
const scrollLeft = container.scrollLeft;
const maxScroll = container.scrollWidth - container.clientWidth;
const boxWidth = getBoxWidth();
const currentSlideIndex = Math.round(scrollLeft / boxWidth);
slides.forEach((slide) => {
const leftArrow = slide.querySelector('.scroll-arrow.left');
const rightArrow = slide.querySelector('.scroll-arrow.right');
leftArrow.disabled = currentSlideIndex === 0;
rightArrow.disabled = currentSlideIndex === totalSlides - 1;
});
}
// Arrow click handlers
slides.forEach(slide => {
const leftArrow = slide.querySelector('.scroll-arrow.left');
const rightArrow = slide.querySelector('.scroll-arrow.right');
leftArrow.addEventListener('click', () => {
container.scrollBy({ left: -getBoxWidth(), behavior: 'smooth' });
setTimeout(updateArrowStates, 300); // Update arrows after scroll
});
rightArrow.addEventListener('click', () => {
container.scrollBy({ left: getBoxWidth(), behavior: 'smooth' });
setTimeout(updateArrowStates, 300); // Update arrows after scroll
});
});
// Update arrows on scroll
container.addEventListener('scroll', updateArrowStates);
// Update arrows after each click
slides.forEach(slide => {
slide.querySelectorAll('.scroll-arrow').forEach(arrow => {
arrow.addEventListener('click', () => {
setTimeout(updateArrowStates, 300); // Match smooth scroll duration
});
});
});
// Set initial position after DOM is fully loaded
setInitialPosition();
// Ensure position after page fully renders
window.addEventListener('load', setInitialPosition);
// Handle resize
window.addEventListener('resize', () => {
setInitialPosition();
});
});
</script>
<!-- Community Links Table -->
<section class="community-links">
<table>
<!-- Ad Banner -->