This repository was archived by the owner on Oct 27, 2024. It is now read-only.
forked from retrobowl-2/retrobowl-2.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3d-bowling.html
915 lines (898 loc) · 57.3 KB
/
3d-bowling.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
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
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>3D Bowling Unblocked | Play on retrobowl-2.github.io</title>
<meta name="robots" content="index, follow">
<meta name="revisit-after" content="2 days">
<meta name="description" content="Play 3D Bowling game on retrobowl-2.github.io.
Play 3D Bowling on retrobowl-2.github.io.
✓ Free online game
✓ Fullscreen mode
✓ No registration required
✓ No Download. Have fun playing!">
<meta name="keywords" content="3d game, 3d bowling, 3d bowling Game, ">
<meta name="news_keywords" content="bowling 3d model
3d bowling alley
3d bowling free
lagged 3d bowling
bowling g 3d
bowling rules
how to play bowling ">
<meta name="creationdatetime" content="2024-02-14T15:52:56.228069Z">
<meta name="content-language" content="en">
<meta name="author" content="retrobowl-2.github.io">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="HandheldFriendly" content="true">
<meta name="MobileOptimized" content="320">
<link rel="preload" href="fonts/quicksand-v22-latin-regular.html" crossorigin="anonymous" as="font" type="font/woff2">
<link rel="preload" href="fonts/rajdhani-v10-latin-700.html" crossorigin="anonymous" as="font" type="font/woff2">
</script>
<link rel="manifest" href="manifest.json" crossorigin="use-credentials">
<link rel="icon" type="image/png" sizes="16x16" href="favicons/9x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicons/9.png">
</script>
<link rel="stylesheet" href="style.css">
<script>
window.aiptag = window.aiptag || {cmd: []};
aiptag.cmd.display = aiptag.cmd.display || [];
aiptag.cmd.player = aiptag.cmd.player || [];
//CMP tool settings
aiptag.cmp = {
show: true,
position: "centered", //centered, bottom
button: true,
buttonText: "Privacy settings",
buttonPosition: "bottom-left" //bottom-left, bottom-right, bottom-center, top-left, top-right
}
aiptag.cmd.player.push(function() {
aiptag.adplayer = new aipPlayer({
AD_WIDTH: 960,
AD_HEIGHT: 540,
AD_DISPLAY: 'center', //default, fullscreen, fill, center, modal-center
LOADING_TEXT: 'loading advertisement',
PREROLL_ELEM: function(){return document.getElementById('videoad')},
AIP_COMPLETE: function (state) {
/*******************
***** WARNING *****
*******************
Please do not remove the PREROLL_ELEM
from the page, it will be hidden automaticly.
*/
//alert("Video Ad Completed: " + state);
}
});
});
function show_videoad() {
//check if the adslib is loaded correctly or blocked by adblockers etc.
if (typeof aiptag.adplayer !== 'undefined') {
aiptag.cmd.player.push(function() { aiptag.adplayer.startVideoAd(); });
} else {
//Adlib didnt load this could be due to an adblocker, timeout etc.
//Please add your script here that starts the content, this usually is the same script as added in AIP_COMPLETE.
alert("Ad Could not be loaded, load your content here");
aiptag.adplayer.aipConfig.AIP_COMPLETE();
}
}
</script>
<script async src="//api.adinplay.com/libs/aiptag/pub/AGB/classroom247.pages.dev/tag.min.js"></script>
</head>
<body>
<div id="videoad"></div>
<nav id="navbar" class="navbar" role="navigation" aria-label="Main navigation">
<div class="container is-fullhd">
<div class="navbar-brand">
<button class="navbar-burger" aria-label="Open main navigation" aria-expanded="false" data-target="menu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</button>
<a class="navbar-item" href="index.html" title="retrobowl-2.github.io" aria-label="Logo">
<img width="193" height="42" alt="retrobowl-2.github.io - Games" src="images/logos/classroom-logo.png">
<img width="193" height="42" alt="retrobowl-2.github.io - Games" src="images/logos/classroom-logo.png">
</a>
<div id="brandSearchOverlayButton" class="is-mobile-search-button search-overlay-trigger">
<a class="button is-medium is-text is-square navbar-control" role="button" rel="nofollow" aria-label="Goto search page">
<span class="icon">
<i class="fas fa-search"></i>
</span>
</a>
</div>
</div>
<div id="menu" class="navbar-menu">
<div id="menu" class="navbar-menu">
<div class="navbar-start">
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link">
<div class="navbar-link" aria-label="Open action menu" aria-expanded="false" data-target="ActionDropdown">
<a class="button is-text navbar-control" href="action-games.html" title="action">action</a>
</div>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open Adventure menu" aria-expanded="false" data-target="AdventureDropdown">
<a class="button is-text navbar-control" href="adventure-games.html" title="Adventure">Adventure</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open driving menu" aria-expanded="false" data-target="drivingDropdown">
<a class="button is-text navbar-control" href="driving-games.html" title="driving">driving</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open Idle menu" aria-expanded="false" data-target="IdleDropdown">
<a class="button is-text navbar-control" href="idle-games.html" title="Idle">Idle</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open motorbike menu" aria-expanded="false" data-target="motorbikeDropdown">
<a class="button is-text navbar-control" href="motorbike-games.html" title="motorbike">motorbike</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open puzzle menu" aria-expanded="false" data-target="puzzleDropdown">
<a class="button is-text navbar-control" href="puzzle-games.html" title="puzzle">puzzle</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open skill menu" aria-expanded="false" data-target="skillDropdown">
<a class="button is-text navbar-control" href="skill-games.html" title="skill">skill</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open Shooting menu" aria-expanded="false" data-target="ShootingDropdown">
<a class="button is-text navbar-control" href="shooting-games.html" title="Shooting">Shooting</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open sport menu" aria-expanded="false" data-target="sportDropdown">
<a class="button is-text navbar-control" href="sport-games.html" title="sport">Sport</a>
</div>
</div>
<div class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="Open io menu" aria-expanded="false" data-target="ioDropdown">
<a class="button is-text navbar-control" href="io-games.html" title="io Games">io Games</a>
</div>
</div>
</div>
</div>
<div class="navbar-end">
<div id="userDropdown" class="navbar-item has-dropdown is-giant is-mouseable">
<div class="navbar-link" aria-label="User menu" aria-expanded="false" data-target="userDropdown">
<div id="navbarBadge" class="navbar-badge is-hidden">0</div>
<a id="userMenuDropdown" class="button is-text is-square navbar-control" role="button" rel="nofollow" aria-label="Open user menu">
<span class="icon is-medium">
<i class="fas fa-user-circle"></i>
</span>
</a>
</div>
<div id="userDropdown" class="navbar-dropdown is-boxed is-user-dropdown">
<div>
<div class="container is-max-fullhd">
<div class="columns">
<div class="column">
<div class="title">
Last played <span>games</span>
</div>
<div id="lastPlayedGames" class="grid"></div>
</div>
<div class="column">
<div class="title">
Favourite <span>games</span>
</div>
<div id="favoriteGames" class="grid"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="search" class="navbar-item has-dropdown is-search">
<div class="navbar-link is-arrowless" aria-label="Search menu" aria-expanded="false">
<input class="input navbar-control" type="search" placeholder="Search" autocomplete="false" aria-labelledBy="searchButton">
<button id="searchButton" class="button is-text is-square navbar-control" type="submit" aria-label="Submit search query">
<span class="icon">
<i class="fas fa-search"></i>
</span>
</button>
</div>
<div class="navbar-dropdown is-boxed is-right search-results-container">
<div class="title">Categories</div>
<ul class="search-tags-results"></ul>
<div class="title">Games</div>
<ul class="search-games-results"></ul>
</div>
</div>
</div>
</div>
</div>
</nav>
<section class="section is-hidden-mobile game-frame-section" id="gameFrameSection">
<div class="game-container">
<div>
<div class="game-frame-container">
<div class="game" id="game">
<div class="splash-screen is-active" id="splashScreen">
<img loading="lazy" class="splash-background" src="img/3dbowling/logo.png" width="672" height="378" alt="3D Bowling">
<div class="splash-content">
<div class="splash-thumbnail">
<figure class="image is-square">
<img loading="lazy" src="img/3dbowling/logo.png" width="146" height="146" alt="3D Bowling">
</figure>
</div>
<button class="button is-play start-game" onclick="show_videoad(); loadMainGame()" aria-label="Start the game">
<span class="icon is-small">
<i class="far fa-play"></i>
</span>
<span>PLAY NOW</span>
</button>
</div>
</div>
</div>
<div class="game-tools">
<div class="game-thumb">
<figure class="image is-square">
<img loading="lazy" src="img/3dbowling/logo.png" width="46" height="46" alt="3D Bowling">
</figure>
</div>
<div class="title is-4">3D Bowling</div>
<div class="buttons">
<button class="button is-thumbs-up is-square is-medium" aria-label="Up vote the game">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" enable-background="new 0 0 50 50" version="1.1" viewBox="0 0 50 50" xml:space="preserve">
<path class="st0" d="m42.2 30.9c0.3 1.8-0.2 3.7-1.4 5 0.1 4-2.3 6.7-6.7 6.7h-3.1c-5.7 0-10.8-3-13.2-3v0.7c0 1.3-1.1 2.4-2.4 2.4h-7.1c-1.3-0.1-2.3-1.2-2.3-2.5v-19c0-1.3 1.1-2.4 2.4-2.4h7.1c0.8 0 1.5 0.4 2 1 0.2 0 0.4-0.1 0.6-0.2 1.6-0.9 4.3-5.1 6-6.9 0.7-0.7 1-2 1.2-3.3 0.4-2.2 1.3-5 3.5-5 4.4 0 6.2 2.6 6.2 6.9 0 2.3-0.9 3.9-1.5 5.2h5.2c3 0 5.4 2.6 5.4 5.4 0 1.5-0.4 2.8-1.1 3.7 0.3 1.8 0.1 3.9-0.8 5.3zm-26.7 9.3v-19h-7.2v19h7.2zm-3.6-1.8c-1 0-1.8-0.8-1.8-1.8s0.8-1.8 1.8-1.8 1.8 0.8 1.8 1.8-0.8 1.8-1.8 1.8zm29.8-16.4c0-1.5-1.3-3-3-3h-8.3c0-3 2.3-4.4 2.3-7.6 0-1.9 0-4.5-3.8-4.5-1.5 1.5-0.8 5.3-3 7.6-2.7 2.5-5.2 7.5-8 7.5v15.1c3.2 0 7.8 3 13.2 3h3c2.8 0 4.9-1.4 4.3-5.3 1.2-0.7 2.1-2.9 1.1-4.6 1.6-0.8 1.6-4.4 0.4-5.3 1.2-0.1 1.8-1.3 1.8-2.9z"></path>
</svg>
</span>
</button>
<button class="button is-thumbs-down is-square is-medium" aria-label="Down vote the game">
<span class="icon">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" enable-background="new 0 0 50 50" version="1.1" viewBox="0 0 50 50" xml:space="preserve">
<path class="st0" d="m44 26.1c0 2.8-2.4 5.4-5.4 5.4h-5.2c0.6 1.3 1.5 2.9 1.5 5.2 0 4.3-1.7 6.9-6.2 6.9-2.2 0-3.1-2.8-3.5-5-0.3-1.3-0.5-2.5-1.2-3.3-1.8-1.8-4.4-6-6-6.9-0.1 0-0.1 0-0.2-0.1v0.9c0 1.3-1.1 2.4-2.4 2.4h-7.1c-1.3 0.1-2.3-1-2.3-2.3v-19c0-1.3 1-2.4 2.3-2.4h7.1c0.6 0 1.2 0.2 1.6 0.6h0.8c2.7 0 7.5-3 13.2-3h3.1c4.4 0 6.9 2.7 6.7 6.7 1.1 1.3 1.7 3.2 1.4 5 0.9 1.5 1.1 3.5 0.7 5.2 0.7 0.9 1.1 2.2 1.1 3.7zm-28.5-15.8h-7.2v19h7.1v-19zm-3.6 17.2c-1 0-1.8-0.8-1.8-1.8s0.8-1.8 1.8-1.8 1.8 0.8 1.8 1.8-0.8 1.8-1.8 1.8zm29.8-1.4c0-1.5-0.6-2.7-1.8-3 1.2-0.9 1.2-4.4-0.4-5.3 1-1.7 0.1-4-1.1-4.6 0.6-3.9-1.4-5.3-4.3-5.3h-3c-5.3 0-10.3 3-12.9 3h-0.3v15.1h0.3c2.3 0 5.4 5.4 7.6 7.6 2.3 2.3 1.5 6.1 3 7.6 3.8 0 3.8-2.6 3.8-4.5 0-3.1-2.3-4.5-2.3-7.6h8.3c1.7 0 3.1-1.5 3.1-3z"></path>
</svg>
</span>
</button>
<button class="button is-share is-square is-medium" id="shareButton" aria-label="Share the game">
<span class="icon is-medium">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" enable-background="new 0 0 50 50" version="1.1" viewBox="0 0 50 50" xml:space="preserve">
<path class="st0" d="m28 31.6-8.3-3.6c0.4-1.6 0.2-3.3-0.4-4.8-0.8-2-2.4-3.6-4.4-4.5s-4.2-0.9-6.3-0.1c-2 0.8-3.6 2.4-4.5 4.4s-0.9 4.2-0.1 6.3c0.8 2 2.4 3.6 4.4 4.5 1 0.4 2.1 0.7 3.2 0.7 1 0 2.1-0.2 3.1-0.6 1.6-0.6 2.9-1.7 3.8-3.1l8.3 3.5c0.2 0.1 0.4 0.1 0.6 0.1 0.6 0 1.1-0.3 1.4-0.9 0.3-0.7-0.1-1.6-0.8-1.9zm-14.4-0.5c-1.3 0.5-2.7 0.5-4 0s-2.3-1.6-2.8-2.8c-0.5-1.3-0.5-2.7 0-4 0.6-1.3 1.6-2.3 2.9-2.9 0.6-0.3 1.3-0.4 2-0.4s1.4 0.1 2 0.4c1.3 0.6 2.3 1.6 2.8 2.9s0.5 2.7 0 4c-0.6 1.3-1.6 2.3-2.9 2.8z"></path>
<path class="st0" d="m23.7 22.2c0.3 0 0.5-0.1 0.8-0.2l7.7-4.7c1.6 1.7 3.8 2.7 6.1 2.7 1.5 0 3-0.4 4.3-1.2 3.9-2.4 5.1-7.4 2.7-11.3s-7.5-5.1-11.3-2.7c-3.4 2.1-4.7 6.3-3.4 9.9l-7.6 4.8c-0.7 0.4-0.9 1.4-0.5 2.1 0.2 0.4 0.7 0.6 1.2 0.6zm9.5-11.6c0.3-1.4 1.2-2.5 2.3-3.2 0.8-0.5 1.8-0.8 2.7-0.8 1.8 0 3.5 0.9 4.4 2.5 1.5 2.4 0.7 5.7-1.7 7.2s-5.7 0.7-7.2-1.7c-0.6-1.3-0.8-2.7-0.5-4z"></path>
<path class="st0" d="m40.2 29.7c-2.1-0.5-4.3-0.2-6.2 1-1.9 1.1-3.2 3-3.7 5.1s-0.2 4.3 1 6.2c1.5 2.5 4.2 3.9 7 3.9 1.5 0 3-0.4 4.3-1.2 3.9-2.4 5.1-7.4 2.7-11.3-1.2-1.9-3-3.2-5.1-3.7zm0.8 12.5c-1.2 0.7-2.6 1-3.9 0.6-1.4-0.3-2.5-1.2-3.2-2.3s-1-2.6-0.6-3.9 1.2-2.5 2.3-3.2c0.8-0.5 1.8-0.8 2.7-0.8 1.8 0 3.5 0.9 4.4 2.5 1.5 2.3 0.7 5.5-1.7 7.1z"></path>
</svg>
</span>
</button>
<button class="button is-theater is-square is-medium is-hidden-touch" id="theaterButton" aria-label="Toggle full screen mode">
<span class="icon is-medium expand">
<svg class="svg-inline--fa fa-expand-wide" aria-hidden="true" focusable="false" data-prefix="fas" data-icon="expand-wide" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" data-fa-i2svg=""><path fill="currentColor" d="M32 64C14.3 64 0 78.3 0 96v96c0 17.7 14.3 32 32 32s32-14.3 32-32V128h64c17.7 0 32-14.3 32-32s-14.3-32-32-32H32zM64 320c0-17.7-14.3-32-32-32s-32 14.3-32 32v96c0 17.7 14.3 32 32 32h96c17.7 0 32-14.3 32-32s-14.3-32-32-32H64V320zM384 64c-17.7 0-32 14.3-32 32s14.3 32 32 32h64v64c0 17.7 14.3 32 32 32s32-14.3 32-32V96c0-17.7-14.3-32-32-32H384zM512 320c0-17.7-14.3-32-32-32s-32 14.3-32 32v64H384c-17.7 0-32 14.3-32 32s14.3 32 32 32h96c17.7 0 32-14.3 32-32V320z"></path></svg>
<i class="fas fa-expand-wide"></i>
</span>
<span class="icon is-medium shrink">
<i class="fas fa-compress-wide"></i>
</span>
</button>
<div class="share-container" id="shareContainer">
<div class="addthis_inline_share_toolbox_wpda"></div>
<span class="icon">
<i class="fas fa-circle-notch fa-spin"></i>
</span>
</div>
</div>
</div>
</div>
<div class="game-suggestions-container">
<div class="grid is-1">
<a href="basket-random.html" target="_self" title="Basket Random" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/basketrandom/basket-random.png" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="Basket Random">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Basket Random</span>
</div>
</div>
</a>
<a href="axis-football-league.html" target="_self" title="Axis Football League" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/axisfootballleague/axis-football-league.png" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="Axis Football League">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Axis Football League</span>
</div>
</div>
</a>
<a href="penalty-kick-online.html" target="_self" title="Penalty Kick Online" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/penaltykickonline/penalty-kick-online.png" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="Penalty Kick Online">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Penalty Kick Online</span>
</div>
</div>
</a>
<a href="8-ball-pool.html" target="_self" title="8 Ball Pool" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/8ballpool/8-ball-pool.png" sizes="(min-width: 1744px) 160px, (max-width: 1743px) 192px, 100vw" width="160" height="90" alt="8 Ball Pool">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>8 Ball Pool</span>
</div>
</div>
</a>
</div>
<button class="button" id="moreRelatedButton" aria-label="Go to more related games">
<span>Related games</span>
</button>
</div>
<div class="slot-container is-billboard game-slot-wide-container">
<div>
<div id="bgames-game-atf-top">
</div>
</div>
</div>
</div>
<div class="slot-container is-skyscraper game-slot-tall-container">
<div>
<div id="bgames-game-atf-right">
<div id='classroom247-pages-dev_300x600_2'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('classroom247-pages-dev_300x600_2'); });
</script>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section has-slot">
<div class="slot-container is-billboard">
<div>
<div id="bgames-game-otf-top">
<div id='classroom247-pages-dev_970x250'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('classroom247-pages-dev_970x250'); });
</script>
</div>
</div>
</div>
</div>
</section>
<section class="section meta-section">
<div class="container">
<div class="columns is-multiline">
<div class="column is-full-tablet is-two-thirds-desktop">
<div class="meta-content-container">
<div class="meta-top-container">
<nav class="breadcrumb game-page" aria-label="breadcrumbs">
<ul>
<li>
<a href="index.html" target="_self" title="66EZ" class="has-hover">
<span class="icon">
<svg class="svg-inline--fa fa-house" aria-hidden="true" focusable="false" data-prefix="far" data-icon="house" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512" data-fa-i2svg=""><path fill="currentColor" d="M567.5 229.7C577.6 238.3 578.9 253.4 570.3 263.5C561.7 273.6 546.6 274.9 536.5 266.3L512 245.5V432C512 476.2 476.2 512 432 512H144C99.82 512 64 476.2 64 432V245.5L39.53 266.3C29.42 274.9 14.28 273.6 5.7 263.5C-2.875 253.4-1.634 238.3 8.473 229.7L272.5 5.7C281.4-1.9 294.6-1.9 303.5 5.7L567.5 229.7zM144 464H192V312C192 289.9 209.9 272 232 272H344C366.1 272 384 289.9 384 312V464H432C449.7 464 464 449.7 464 432V204.8L288 55.47L112 204.8V432C112 449.7 126.3 464 144 464V464zM240 464H336V320H240V464z"></path>
</svg>
<i class="far fa-home"></i>
</span>
</a>
</li>
<li class="">
<span class="icon">
<i class="fas fa-chevron-right"></i>
</span>
<a href="3d-games.html" target="_self" title="
3D
" class="has-hover"> 3D</a>
</li>
<li class="">
<span class="icon">
<i class="fas fa-chevron-right"></i>
</span>
<a href="sport-games.html" target="_self" title="
sport
" class="has-hover"> sport</a>
</li>
<li class="is-active">
<span class="icon">
<i class="fas fa-chevron-right"></i>
</span>
<label>
3D Bowling
</label>
</li>
</ul>
</nav>
<a class="button walk-through-button" role="button" aria-label="Play a walk through video">
<span class="icon">
<i class="fas fa-play-circle"></i>
</span>
<span>Walkthrough</span>
</a>
</div>
<div class="meta-bottom-container">
<div class="thumbnail-container is-hidden-tablet ">
<figure class="image is-3by2">
<img loading="lazy" src="img/3dbowling/logo.png" width="672" height="378" alt="3D Bowling">
</figure>
<button class="button is-square is-medium is-favorite" aria-label="Add the game to your favorites">
<span class="icon is-medium">
<i class="far fa-heart outline" aria-hidden="true"></i>
<i class="fas fa-heart solid has-text-danger" aria-hidden="true"></i>
</span>
</button>
<button class="button is-play is-fullwidth is-loading start-game" disabled aria-label="Start the game">
<span class="icon">
<i class="far fa-play"></i>
</span>
<span>Play now</span>
</button>
</div>
<div class="title-bar">
<h1 class="title is-3">3D Bowling</h1>
<button class="button is-square is-favorite is-hidden-mobile" aria-label="Add the game to your favorites">
<span class="icon">
<i class="far fa-heart outline" aria-hidden="true"></i>
<i class="fas fa-heart solid has-text-danger" aria-hidden="true"></i>
</span>
</button>
</div>
<div class="content">
<h2>Description</h2>
<p>Features include stunning 3D visuals.</p>
<p>Modern 3D physics engine for realistic pin motion</p>
<p>Unbelievable bowling scene</p>
<p>- Each scene has many bowling balls.</p>
<p>- Tracking of certain metrics</p>
<p>1. To position the ball for your throw, drag it to the left or right.</p>
<p>2. To bowl, flick the ball with your finger.</p>
<p>3. Curve the screen while throwing a hook ball.</p>
<p>Notes: The game's necessary permissions are solely utilized for the online leaderboard. Thanks.</p>
<h2>How to play 3D Bowling</h2>
<p>Navigate - Mouse / Trackpad</p>
<p>Select - LMB</p>
<h2>Game developer</h2>
<p></p>
<h2>Release Date</h2>
<p></p>
<a class="button walk-through-button is-hidden-tablet" role="button" aria-label="Play a walk through video">
<span class="icon">
<i class="fas fa-play-circle"></i>
</span>
<span>Walkthrough</span>
</a>
</div>
<div class="publisher-disclaimer-notification"></div>
</div>
<div class="meta-controls-container is-hidden-touch">
<div>
<div class="cluster control tooltip" data-hover="true">
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-up"></i>
</span></kbd>
<br>
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-left"></i>
</span>
</kbd>
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-down"></i>
</span>
</kbd>
<kbd>
<span class="icon is-small">
<i class="fas fa-caret-right"></i>
</span>
</kbd>
<span class="tooltip-wrapper">
<em>Use arrow keys to play</em>
</span>
</div>
<div class="game-control-mouse control tooltip" data-hover="true" data-casual-attached="attached">
<div class="ping"></div>
<span class="tooltip-wrapper" style="top: -999px; left: -999px;">
<em>Use your mouse to play</em></span>
</div>
</div>
</div>
</div>
</div>
<div class="column">
<div class="grid is-1">
<a href="action-games.html" class="tag-card" title="action">
<span>action</span>
<img loading="lazy" src="images/logos/action64.png" width="128" height="72" alt="action">
</a>
<a href="adventure-games.html" class="tag-card" title="adventure">
<span>adventure</span>
<img loading="lazy" src="images/logos/adventurex64.png" width="128" height="72" alt="adventure">
</a>
<a href="shooting-games.html" class="tag-card" title="shooting">
<span>shooting</span>
<img loading="lazy" src="images/logos/shooting-64.png" width="128" height="72" alt="shooting">
</a>
<a href="racing-games.html" class="tag-card" title="racing">
<span>racing</span>
<img loading="lazy" src="images/logos/off-road-car-64.png" width="128" height="72" alt="racing">
</a>
<a href="puzzle-games.html" class="tag-card" title="puzzle">
<span>puzzle</span>
<img loading="lazy" src="images/logos/puzzle-64.png" width="128" height="72" alt="puzzle">
</a>
<a href="stickman-games.html" class="tag-card" title="stickman">
<span>stickman</span>
<img loading="lazy" src="images/logos/archeologist.png" width="128" height="72" alt="stickman">
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section" id="moreRelatedGames">
<div class="container">
<div class="columns is-multiline">
<div class="column">
<div class="grid is-hidden-desktop"></div>
<div class="grid is-4-tablet is-4-desktop is-4-widescreen is-4-fullhd is-5-ultrawide">
<a href="3d-bowling.html" target="_self" title="3D Bowling" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/3dbowling/logo.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="3D Bowling">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>3D Bowling</span>
</div>
</div>
</a>
<a href="8-ball-pool.html" target="_self" title="8 Ball Pool" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/8ballpool/8-ball-pool.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="8 Ball Pool">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>8 Ball Pool</span>
</div>
</div>
</a>
<a href="axis-football-league.html" target="_self" title="Axis Football League" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/axisfootballleague/axis-football-league.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Axis Football League">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Axis Football League</span>
</div>
</div>
</a>
<a href="basket-and-ball.html" target="_self" title="Basket And Ball" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/basketandball/basket-and-ball.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Basket And Ball">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Basket And Ball</span>
</div>
</div>
</a>
<a href="basket-random.html" target="_self" title="Basket Random" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/basketrandom/basket-random.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Basket Random">
</figure>
<div class="content">
<div class="badge is-best">
Best
</div>
<div class="name"><span>Basket Random</span>
</div>
</div>
</a>
<a href="basketball-legends-2020.html" target="_self" title="Basketball Legends 2020" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/basketlegends2020/basketball-legends.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Basketball Legends 2020">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Basketball Legends 2020</span>
</div>
</div>
</a>
<a href="basketball-stars.html" target="_self" title="Basketball Stars" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/basketballstars/basketball-stars.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Basketball Stars">
</figure>
<div class="content">
<div class="name"><span>Basketball Stars</span>
</div>
</div>
</a>
<a href="extreme-pamplona.html" target="_self" title="Extreme Pampnola" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/extremepamplona/extreme-pamplona.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Extreme Pampnola">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Extreme Pampnola</span>
</div>
</div>
</a>
<a href="football-legends.html" target="_self" title="Football Legends" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/footballlegends/football-legends.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Football Legends">
</figure>
<div class="content">
<div class="name"><span>Football Legends</span>
</div>
</div>
</a>
<a href="soccer-heads.html" target="_self" title="Soccer Heads" class="tile-card not-mobile">
<figure class="image is-16by9">
<img loading="lazy" src="img/soccerheads/soccer-heads.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Soccer Heads">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>Soccer Heads</span>
</div>
</div>
</a>
<a href="sprinter.html" target="_self" title="Spinter" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/spinter/sprinter.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Spinter">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Spinter</span>
</div>
</div>
</a>
<a href="street-ball-star.html" target="_self" title="Street Ball Star" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/streetballstar/street-ball-star.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Street Ball Star">
</figure>
<div class="content">
<div class="name"><span>Street Ball Star</span>
</div>
</div>
</a>
<a href="tap-tap-shots.html" target="_self" title="Tap Tap Shots" class="tile-card not-mobile">
<figure class="image is-16by9">
<img loading="lazy" src="img/taptapshots/tap-tap-shots.png" sizes="(min-width: 1744px) 224px, (min-width: 1408px) 192px, (min-width: 1216px) 160px, (min-width: 700px) 240px, (max-width: 699px) 192px, 100vw" width="160" height="90" alt="Tap Tap Shots">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="badge is-not-mobile">
Desktop only
</div>
<div class="name"><span>Tap Tap Shots</span>
</div>
</div>
</a>
</div>
</div>
<div class="column is-full-tablet is-5-widescreen is-5-fullhd is-4-ultrawide">
<div class="hall-of-fame"><span class="title">
Hall of <em>Fame</em></span>
<div class="grid">
<a href="bullet-force.html" target="_self" title="Bullet Force" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/bulletforce/bullet-force.png" sizes="(min-width: 1744px) 192px, (max-width: 1743px) 160px, 100vw" width="160" height="90" alt="Bullet Force">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Bullet Force</span>
</div>
</div>
</a>
<a href="burnin-rubber-5-xs.html" target="_self" title="Burnin Rubber 5 Xs" class="tile-card ">
<figure class="image is-16by9">
<img loading="lazy" src="img/burninrubber5xs/burnin-rubber-5-xs.webp" sizes="(min-width: 1744px) 192px, (max-width: 1743px) 160px, 100vw" width="160" height="90" alt="Burnin Rubber 5 Xs">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Burnin Rubber 5 Xs</span>
</div>
</div>
</a>
<a href="masked-forces.html" target="_self" title="Masked Forces" class="tile-card is-wide ">
<figure class="image is-29by11">
<img loading="lazy" src="img/maskedforces/masked-forces.png" sizes="(min-width: 1744px) 406px, (max-width: 1743px) 348px, 100vw" width="348" height="132" alt="Masked Forces">
</figure>
<div class="content">
<div class="badge is-new">
New
</div>
<div class="name"><span>Masked Forces</span>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section has-slot">
<div class="slot-container is-billboard">
<div>
<div id="bgames-game-btf-bottom">
<div id='classroom247-pages-dev_970x250_2'>
<script type='text/javascript'>
aiptag.cmd.display.push(function() { aipDisplayTag.display('classroom247-pages-dev_970x250_2'); });
</script>
</div>
</div>
</div>
</div>
</section>
<div class="back-to-top" id="backToTop">
<span class="icon">
<i class="fas fa-chevron-circle-up" aria-hidden="true"></i>
</span>
</div>
<footer class="section footer">
<picture>
<source type="image/webp" media="(max-width: 1023px)" srcset="images/footer/footer-desktop.png">
<source type="image/webp" media="(min-width: 1024px)" srcset="images/footer/footer-desktop.png">
<img loading="lazy" class="footer-asset" src="images/footer/footer-desktop.png" width="800" height="315" alt="66EZ footer image">
</picture>
<div class="container">
<div class="footer-menu">
<div class="footer-links">
<div>
<p>for users</p>
<ul>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span>
<a role="button" class="optanon-toggle-display has-hover">Privacy Settings</a>
</li>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span>
<a href="https://retrobowl-2.github.io/cookie-statement/index.html" target="_self" title="Cookie Statement" class="has-hover">Cookie Policy</a>
</li>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span>
<a href="https://retrobowl-2.github.io/privacy-statement/index.html" target="_self" title="Privacy Statement" class="has-hover">Privacy policy</a>
</li>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span><a href="https://retrobowl-2.github.io/terms-of-use/index.html" target="_self" title="Terms of Use" class="has-hover">Terms</a>
</li>
</ul>
</div>
<div>
<p>corporate</p>
<ul>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span>
<a href="about-us/index.html" target="_self" title="About Us" class="has-hover">About Us</a>
</li>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span>
<a href="https://retrobowl-2.github.io/contact/index.html" target="_self" title="Contact" class="has-hover">Contact</a>
</li>
<li>
<span class="icon">
<i class="fas fa-caret-right"></i>
</span>
<a href="https://retrobowl-2.github.io/advertise/index.html" target="_self" title="Advertising" class="has-hover">Advertising</a>
</li>
</ul>
</div>
<div class="footer-copyright">
<img loading="lazy" src="images/logos/classroom-logo.png" width="130" height="80" alt="Unblocked Games 66">
<span>© Copyright 2024</span>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
var SITE_OPTIONS = {
id: 501,
title: "66EZ",
language: "en",
country: "US",
root: "/",
url: "https://www.retrobowl-2.github.io/",
domain: "retrobowl-2.github.io",
util: "home-page",
analytics: "",
analyticsStreamId: "",
sendPulseDomainID: "",
searchPath: "https://www.retrobowl-2.github.io/search/",
popularityUrl: "https://popularity.retrobowl-2.github.io",
staticUrl: "https://assets.retrobowl-2.github.io",
searchUrl: "https://search.retrobowl-2.github.io",
privacyStatementUrl: "https://www.retrobowl-2.github.io/privacy-statement/",
termsOfUseUrl: "https://www.retrobowl-2.github.io/terms-of-use/",
cookieStatementUrl: "https://www.retrobowl-2.github.io/cookie-statement/",
thirdPartiesUrl: "https://www.retrobowl-2.github.io/third-parties/",
kidsPrivacyStatementUrl: "https://kids.retrobowl-2.github.io/privacy-policy/",
buildTest: "false",
cookieProEnabled: true,
cookieProId: "",
raygunAPIKey: ""
};
</script>
<script type="text/javascript">
var TARGETING = {
id: "501",
title: "retrobowl-2.github.io",
language: "en",
country: "US",
domain: "retrobowl-2.github.io",
util: "home-page",
targeting: "homepage"
};
</script>
<script src="main28c8.js"></script>
<script>
function loadMainGame()
{
var html = `<iframe class="game-iframe iframeloader" id="game-area" src="https://gameftp.agariodns.cyou/3DBowling" style="width:100%;height:100%" scrolling="none" frameborder="0" allowfullscreen="" tabindex="0"></iframe>`;
document.getElementById("game").innerHTML = html;
document.getElementById('game').scrollIntoView();
}
function open_fullscreen() {
let game = document.getElementById("game-area");
if (game.requestFullscreen) {
game.requestFullscreen();
} else if (game.mozRequestFullScreen) { /* Firefox */
game.mozRequestFullScreen();
} else if (game.webkitRequestFullscreen) { /* Chrome, Safari and Opera */
game.webkitRequestFullscreen();
} else if (game.msRequestFullscreen) { /* IE/Edge */
game.msRequestFullscreen();
}
};
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CT0VR0DC9R"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CT0VR0DC9R');
</script>
</body>
</html>