GAME

<html> <head> <title>Flappy Bird</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <link href='https://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet'> <link href='https://fonts.googleapis.com/css?family=Permanent Marker' rel='stylesheet'> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> </head> <style> #div1 { font-size:48px; } body { background-color: #721bc4 ; font-family: 'Pacifico'; } h1{ background-color: #a666e3 ; text-shadow:5px 5px 5px #dfd2ec ; text-align:center;} canvas{ animation: mymove 5s infinite; border: 5px solid #0a3cda ; border-style:dotted; border-radius: 15px 50px; } @keyframes mymove { 50% {box-shadow: 10px 20px 30px blue;} } h3{ font-family:'Permanent Marker'; } </style> <body> <h1><b>Flappy Bird !!! (game) <div id="div1" class="fa"></div> </b></h1> <h3><b>If you want to have a very high score. Think out of this game !! ~_^ <hr> and tell me your high score </b></h3> <canvas id="myCanvas" width="320" height="480" style="background:url(&#39;https://blogger.googleusercontent.com/img/proxy/AVvXsEiQgnRthMGUO62tMn6YsG5PgxUdEoYenPdNDUVuU6q_o9-gY3Mb_zKXj00ME8JzdcY6d9mWbK5xKLQiAFOQfX1wdCsW-WcGNSlJJPbfYsTtL_dwjMi4-GxtzuyU8tVmp0B_yXolhgA=s0-d&#39;); background-size: 100%; height: 95% " < /canvas> <h3> <i onclick="myFunction(this)" class="fa fa-thumbs-up"></i></h3> <script> function smile() { var a; a = document.getElementById("div1"); a.innerHTML = "&#xf118;"; setTimeout(function () { a.innerHTML = "&#xf11a;"; }, 1000); setTimeout(function () { a.innerHTML = "&#xf119;"; }, 2000); setTimeout(function () { a.innerHTML = "&#xf11a;"; }, 3000); } smile(); setInterval(smile, 4000); function myFunction(x) { x.classList.toggle("fa-thumbs-down"); } // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // var ctx = myCanvas.getContext("2d"); var FPS = 40; var jump_amount = -10; var max_fall_speed= +10; var acceleration = 1; var pipe_speed = -2; var game_mode = 'prestart'; var time_game_last_running; var bottom_bar_offset = 0; var pipes = []; function MySprite (img_url) { this.x = 0; this.y = 0; this.visible= true; this.velocity_x = 0; this.velocity_y = 0; this.MyImg = new Image(); this.MyImg.src = img_url || ''; this.angle = 0; this.flipV = false; this.flipH = false; } MySprite.prototype.Do_Frame_Things = function() { ctx.save(); ctx.translate(this.x + this.MyImg.width/2, this.y + this.MyImg.height/2); ctx.rotate(this.angle * Math.PI / 180); if (this.flipV) ctx.scale(1,-1); if (this.flipH) ctx.scale(-1,1); if (this.visible) ctx.drawImage(this.MyImg, -this.MyImg.width/2, -this.MyImg.height/2); this.x = this.x + this.velocity_x; this.y = this.y + this.velocity_y; ctx.restore(); } function ImagesTouching(thing1, thing2) { if (!thing1.visible || !thing2.visible) return false; if (thing1.x >= thing2.x + thing2.MyImg.width || thing1.x + thing1.MyImg.width <= thing2.x) return false; if (thing1.y >= thing2.y + thing2.MyImg.height || thing1.y + thing1.MyImg.height <= thing2.y) return false; return true; } function Got_Player_Input(MyEvent) { switch (game_mode) { case 'prestart': { game_mode = 'running'; break; } case 'running': { bird.velocity_y = jump_amount; break; } case 'over': if (new Date() - time_game_last_running > 1000) { reset_game(); game_mode = 'running'; break; } } MyEvent.preventDefault(); } addEventListener("touchstart", Got_Player_Input); addEventListener("mousedown", Got_Player_Input); addEventListener("keydown", Got_Player_Input); function make_bird_slow_and_fall() { if (bird.velocity_y < max_fall_speed) { bird.velocity_y = bird.velocity_y + acceleration; } if (bird.y > myCanvas.height - bird.MyImg.height) { bird.velocity_y = 0; game_mode = 'over'; } } function add_pipe(x_pos, top_of_gap, gap_width) { var top_pipe = new MySprite(); top_pipe.MyImg = pipe_piece; top_pipe.x = x_pos; top_pipe.y = top_of_gap - pipe_piece.height; top_pipe.velocity_x = pipe_speed; pipes.push(top_pipe); var bottom_pipe = new MySprite(); bottom_pipe.MyImg = pipe_piece; bottom_pipe.flipV = true; bottom_pipe.x = x_pos; bottom_pipe.y = top_of_gap + gap_width; bottom_pipe.velocity_x = pipe_speed; pipes.push(bottom_pipe ); } function make_bird_tilt_appropriately() { if (bird.velocity_y < 0) { bird.angle= -15; } else if (bird.angle < 70) { bird.angle = bird.angle + 4; } } function show_the_pipes() { for (var i=0; i < pipes.length; i++) { pipes[i].Do_Frame_Things(); } } function check_for_end_game() { for (var i=0; i < pipes.length; i++) if (ImagesTouching(bird, pipes[i])) game_mode = "over"; } function display_intro_instructions () { ctx.font= "25px Arial"; ctx.fillStyle= "red"; ctx.textAlign="center"; ctx.fillText("Press, touch or click to start", myCanvas.width / 2, myCanvas.height / 4); } function display_game_over () { var score = 0; for (var i=0; i < pipes.length; i++) if (pipes[i].x < bird.x) score = score + 0.5; ctx.font= "30px Arial"; ctx.fillStyle= "red"; ctx.textAlign="center"; ctx.fillText("Game Over", myCanvas.width / 2, 100); ctx.fillText("Score: " + score, myCanvas.width / 2, 150); ctx.font= "20px Arial"; ctx.fillText("Click, touch, or press to play again", myCanvas.width / 2, 300); } function display_bar_running_along_bottom() { if (bottom_bar_offset < -23) bottom_bar_offset = 0; ctx.drawImage(bottom_bar, bottom_bar_offset, myCanvas.height - bottom_bar.height); } function reset_game() { bird.y = myCanvas.height / 2; bird.angle= 0; pipes=[]; // erase all the pipes from the array add_all_my_pipes(); // and load them back in their starting positions } function add_all_my_pipes() { add_pipe(500, 100, 140); add_pipe(800, 50, 140); add_pipe(1000, 250, 140); add_pipe(1200, 150, 120); add_pipe(1600, 100, 120); add_pipe(1800, 150, 120); add_pipe(2000, 200, 120); add_pipe(2200, 250, 120); add_pipe(2400, 30, 100); add_pipe(2700, 300, 100); add_pipe(3000, 100, 80); add_pipe(3300, 250, 80); add_pipe(3600, 50, 60); var finish_line = new MySprite("http://s2js.com/img/etc/flappyend.png"); finish_line.x = 3900; finish_line.velocity_x = pipe_speed; pipes.push(finish_line); } var pipe_piece = new Image(); pipe_piece.onload = add_all_my_pipes; pipe_piece.src = "http://s2js.com/img/etc/flappypipe.png" ; function Do_a_Frame () { ctx.clearRect(0, 0, myCanvas.width, myCanvas.height); bird.Do_Frame_Things(); display_bar_running_along_bottom(); switch (game_mode) { case 'prestart': { display_intro_instructions(); break; } case 'running': { time_game_last_running = new Date(); bottom_bar_offset = bottom_bar_offset + pipe_speed; show_the_pipes(); make_bird_tilt_appropriately(); make_bird_slow_and_fall(); check_for_end_game(); break; } case 'over': { make_bird_slow_and_fall(); display_game_over(); break; } } } var bottom_bar = new Image(); bottom_bar.src = "http://s2js.com/img/etc/flappybottom.png" ; var bird = new MySprite("http://s2js.com/img/etc/flappybird.png"); bird.x = myCanvas.width / 3; bird.y = myCanvas.height / 2; setInterval(Do_a_Frame, 1000/FPS); </script> </body> </html></plaintext> </div> <div class='post-bottom'> <div class='post-footer float-container'> <div class='post-footer-line post-footer-line-1'> </div> <div class='post-footer-line post-footer-line-2'> </div> <div class='post-footer-line post-footer-line-3'> </div> </div> <div class='post-share-buttons post-share-buttons-bottom invisible'> <div class='byline post-share-buttons goog-inline-block'> <div aria-owns='sharing-popup-Blog1-byline-7723233805515915774' class='sharing' data-title='GAME'> <button aria-controls='sharing-popup-Blog1-byline-7723233805515915774' aria-label='Споделяне' class='sharing-button touch-icon-button' id='sharing-button-Blog1-byline-7723233805515915774' role='button'> <div class='flat-icon-button ripple'> <svg class='svg-icon-24'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_share_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> </button> <div class='share-buttons-container'> <ul aria-hidden='true' aria-label='Споделяне' class='share-buttons hidden' id='sharing-popup-Blog1-byline-7723233805515915774' role='menu'> <li> <span aria-label='Получаване на връзка' class='sharing-platform-button sharing-element-link' data-href='https://www.blogger.com/share-post.g?blogID=2712734474906705221&postID=7723233805515915774&target=' data-url='https://miraiya34.blogspot.com/2023/11/game.html' role='menuitem' tabindex='-1' title='Получаване на връзка'> <svg class='svg-icon-24 touch-icon sharing-link'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_link_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Получаване на връзка</span> </span> </li> <li> <span aria-label='Споделяне в/ъв Facebook' class='sharing-platform-button sharing-element-facebook' data-href='https://www.blogger.com/share-post.g?blogID=2712734474906705221&postID=7723233805515915774&target=facebook' data-url='https://miraiya34.blogspot.com/2023/11/game.html' role='menuitem' tabindex='-1' title='Споделяне в/ъв Facebook'> <svg class='svg-icon-24 touch-icon sharing-facebook'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_facebook_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Facebook</span> </span> </li> <li> <span aria-label='Споделяне в/ъв X' class='sharing-platform-button sharing-element-twitter' data-href='https://www.blogger.com/share-post.g?blogID=2712734474906705221&postID=7723233805515915774&target=twitter' data-url='https://miraiya34.blogspot.com/2023/11/game.html' role='menuitem' tabindex='-1' title='Споделяне в/ъв X'> <svg class='svg-icon-24 touch-icon sharing-twitter'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_twitter_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>X</span> </span> </li> <li> <span aria-label='Споделяне в/ъв Pinterest' class='sharing-platform-button sharing-element-pinterest' data-href='https://www.blogger.com/share-post.g?blogID=2712734474906705221&postID=7723233805515915774&target=pinterest' data-url='https://miraiya34.blogspot.com/2023/11/game.html' role='menuitem' tabindex='-1' title='Споделяне в/ъв Pinterest'> <svg class='svg-icon-24 touch-icon sharing-pinterest'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_pinterest_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Pinterest</span> </span> </li> <li> <span aria-label='Имейл' class='sharing-platform-button sharing-element-email' data-href='https://www.blogger.com/share-post.g?blogID=2712734474906705221&postID=7723233805515915774&target=email' data-url='https://miraiya34.blogspot.com/2023/11/game.html' role='menuitem' tabindex='-1' title='Имейл'> <svg class='svg-icon-24 touch-icon sharing-email'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_24_email_dark' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Имейл</span> </span> </li> <li aria-hidden='true' class='hidden'> <span aria-label='Споделяне с други приложения' class='sharing-platform-button sharing-element-other' data-url='https://miraiya34.blogspot.com/2023/11/game.html' role='menuitem' tabindex='-1' title='Споделяне с други приложения'> <svg class='svg-icon-24 touch-icon sharing-sharingOther'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_more_horiz_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <span class='platform-sharing-text'>Други приложения</span> </span> </li> </ul> </div> </div> </div> </div> </div> </div> </div> <section class='comments embed' data-num-comments='0' id='comments'> <a name='comments'></a> <h3 class='title'>Коментари</h3> <div id='Blog1_comments-block-wrapper'> </div> <div class='footer'> <div class='comment-form'> <a name='comment-form'></a> <h4 id='comment-post-message'>Публикуване на коментар</h4> <a href='https://www.blogger.com/comment/frame/2712734474906705221?po=7723233805515915774&hl=bg&saa=85391&origin=https://miraiya34.blogspot.com&skin=contempo' id='comment-editor-src'></a> <iframe allowtransparency='allowtransparency' class='blogger-iframe-colorize blogger-comment-from-post' frameborder='0' height='410px' id='comment-editor' name='comment-editor' src='' width='100%'></iframe> <script src='https://www.blogger.com/static/v1/jsbin/1345082660-comment_from_post_iframe.js' type='text/javascript'></script> <script type='text/javascript'> BLOG_CMT_createIframe('https://www.blogger.com/rpc_relay.html'); </script> </div> </div> </section> <div class='desktop-ad mobile-ad'> </div> </article> </div> </div><div class='widget PopularPosts' data-version='2' id='PopularPosts1'> <h3 class='title'> Популярни публикации от този блог </h3> <div class='widget-content'> <div role='feed'> <article class='post' role='article'> <h3 class='post-title'><a href='https://miraiya34.blogspot.com/2023/11/it.html'>IT нинджи</a></h3> <div class='post-header'> <div class='post-header-line-1'> <span class='byline post-timestamp'> - <meta content='https://miraiya34.blogspot.com/2023/11/it.html'/> <a class='timestamp-link' href='https://miraiya34.blogspot.com/2023/11/it.html' rel='bookmark' title='permanent link'> <time class='published' datetime='2023-11-09T08:05:00-08:00' title='2023-11-09T08:05:00-08:00'> ноември 09, 2023 </time> </a> </span> </div> </div> <div class='item-content float-container'> <div class='popular-posts-snippet snippet-container r-snippet-container'> <div class='snippet-item r-snippetized'> Алекс - 32 ВанкоС - 23 Пепи - 224 Денис - 29 Калина Малина - 9 Мирая - 19 Николетка Фарфалетка - 16 Ани Банани - 14 Теодор - 20 Митко Динамитко - 16 Съни - 9 Мартин - 0 Антон Retro Mr Iliev - 18 Сайт на г-н Илиев: https://izkustva.blogspot.com </div> <a class='snippet-fade r-snippet-fade hidden' href='https://miraiya34.blogspot.com/2023/11/it.html'></a> </div> <div class='jump-link flat-button ripple'> <a href='https://miraiya34.blogspot.com/2023/11/it.html' title='IT нинджи'> Прочетете още </a> </div> </div> </article> <article class='post' role='article'> <h3 class='post-title'><a href='https://miraiya34.blogspot.com/2024/02/iframe.html'>iframe на игра</a></h3> <div class='post-header'> <div class='post-header-line-1'> <span class='byline post-timestamp'> - <meta content='https://miraiya34.blogspot.com/2024/02/iframe.html'/> <a class='timestamp-link' href='https://miraiya34.blogspot.com/2024/02/iframe.html' rel='bookmark' title='permanent link'> <time class='published' datetime='2024-02-29T08:16:00-08:00' title='2024-02-29T08:16:00-08:00'> февруари 29, 2024 </time> </a> </span> </div> </div> <div class='item-content float-container'> <div class='popular-posts-snippet snippet-container r-snippet-container'> <div class='snippet-item r-snippetized'> </div> <a class='snippet-fade r-snippet-fade hidden' href='https://miraiya34.blogspot.com/2024/02/iframe.html'></a> </div> <div class='jump-link flat-button ripple'> <a href='https://miraiya34.blogspot.com/2024/02/iframe.html' title='iframe на игра'> Прочетете още </a> </div> </div> </article> <article class='post' role='article'> <h3 class='post-title'><a href='https://miraiya34.blogspot.com/2023/11/6666666666666666666666.html'>6666666666666666666666</a></h3> <div class='post-header'> <div class='post-header-line-1'> <span class='byline post-timestamp'> - <meta content='https://miraiya34.blogspot.com/2023/11/6666666666666666666666.html'/> <a class='timestamp-link' href='https://miraiya34.blogspot.com/2023/11/6666666666666666666666.html' rel='bookmark' title='permanent link'> <time class='published' datetime='2023-11-09T06:46:00-08:00' title='2023-11-09T06:46:00-08:00'> ноември 09, 2023 </time> </a> </span> </div> </div> <div class='item-content float-container'> <div class='item-thumbnail'> <a href='https://miraiya34.blogspot.com/2023/11/6666666666666666666666.html'> <img alt='Изображение' sizes='72px' src='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZDm9MqVtrYW9cmLYpMrAb2EtCdRrIXAyK9466lSl6NLqFOz9Lkmw2kxkSIYzmj15m1bRiuCLy9bx8kFzx4tVr447aaY9odMHKCuKtr4QEzUVq4Hvm2YIs064WXEjvd05spjNsy3gC4vHnyC5Hc5rtEtFLrcUxqddOnNQYsYbSIeRTqhHL3bxcF2Sc9WU/s1600/frame.png' srcset='https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZDm9MqVtrYW9cmLYpMrAb2EtCdRrIXAyK9466lSl6NLqFOz9Lkmw2kxkSIYzmj15m1bRiuCLy9bx8kFzx4tVr447aaY9odMHKCuKtr4QEzUVq4Hvm2YIs064WXEjvd05spjNsy3gC4vHnyC5Hc5rtEtFLrcUxqddOnNQYsYbSIeRTqhHL3bxcF2Sc9WU/w72-h72-p-k-no-nu/frame.png 72w, https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiZDm9MqVtrYW9cmLYpMrAb2EtCdRrIXAyK9466lSl6NLqFOz9Lkmw2kxkSIYzmj15m1bRiuCLy9bx8kFzx4tVr447aaY9odMHKCuKtr4QEzUVq4Hvm2YIs064WXEjvd05spjNsy3gC4vHnyC5Hc5rtEtFLrcUxqddOnNQYsYbSIeRTqhHL3bxcF2Sc9WU/w144-h144-p-k-no-nu/frame.png 144w'/> </a> </div> <div class='popular-posts-snippet snippet-container r-snippet-container'> <div class='snippet-item r-snippetized'> Flappy Bird Flappy Bird !!! (game) If you want to have a very high score. Think out of this game !! ~_^ and tell me your high score Получаване на връзка Facebook Twitter Pinterest Имейл Други приложения Коментари Публикуване на коментар Популярни публикации QR код Мирая Със заглавие Предоставено от Blogger </div> <a class='snippet-fade r-snippet-fade hidden' href='https://miraiya34.blogspot.com/2023/11/6666666666666666666666.html'></a> </div> <div class='jump-link flat-button ripple'> <a href='https://miraiya34.blogspot.com/2023/11/6666666666666666666666.html' title='6666666666666666666666'> Прочетете още </a> </div> </div> </article> </div> </div> </div></div> </main> </div> <footer class='footer section' id='footer' name='Долен колонтитул'><div class='widget Attribution' data-version='2' id='Attribution1'> <div class='widget-content'> <div class='blogger'> <a href='https://www.blogger.com' rel='nofollow'> <svg class='svg-icon-24'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_post_blogger_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> Предоставено от Blogger </a> </div> <div class='image-attribution'> Изображенията в темата са от <a href="http://www.offset.com/photos/394244">Michael Elkan</a> </div> </div> </div></footer> </div> </div> </div> <aside class='sidebar-container container sidebar-invisible' role='complementary'> <div class='navigation'> <button class='svg-icon-24-button flat-icon-button ripple sidebar-back'> <svg class='svg-icon-24'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_arrow_back_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </button> </div> <div class='sidebar_top_wrapper'> <div class='sidebar_top section' id='sidebar_top' name='Странична лента (горе)'><div class='widget Profile' data-version='2' id='Profile1'> <div class='wrapper solo'> <div class='widget-content individual'> <a href='https://www.blogger.com/profile/11705905442347875509' rel='nofollow'> <div class='default-avatar-wrapper'> <svg class='svg-icon-24 avatar-icon'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_person_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> </a> <div class='profile-info'> <dl class='profile-datablock'> <dt class='profile-data'> <a class='profile-link g-profile' href='https://www.blogger.com/profile/11705905442347875509' rel='author nofollow'> Празен блог </a> </dt> </dl> <a class='profile-link visit-profile pill-button' href='https://www.blogger.com/profile/11705905442347875509' rel='author'> Отваряне на потребителския профил </a> </div> </div> </div> </div></div> </div> <div class='sidebar_bottom section' id='sidebar_bottom' name='Странична лента (долу)'><div class='widget BlogArchive' data-version='2' id='BlogArchive1'> <details class='collapsible extendable'> <summary> <div class='collapsible-title'> <h3 class='title'> Архивиране </h3> <svg class='svg-icon-24 chevron-down'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_expand_more_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> <svg class='svg-icon-24 chevron-up'> <use xlink:href='/responsive/sprite_v1_6.css.svg#ic_expand_less_black_24dp' xmlns:xlink='http://www.w3.org/1999/xlink'></use> </svg> </div> </summary> <div class='widget-content'> <div id='ArchiveList'> <div id='BlogArchive1_ArchiveList'> <div class='first-items'> <ul class='flat'> <li class='archivedate'> <a href='https://miraiya34.blogspot.com/2024/05/'>май 2024<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://miraiya34.blogspot.com/2024/02/'>февруари 2024<span class='post-count'>3</span></a> </li> <li class='archivedate'> <a href='https://miraiya34.blogspot.com/2024/01/'>януари 2024<span class='post-count'>3</span></a> </li> <li class='archivedate'> <a href='https://miraiya34.blogspot.com/2023/12/'>декември 2023<span class='post-count'>1</span></a> </li> <li class='archivedate'> <a href='https://miraiya34.blogspot.com/2023/11/'>ноември 2023<span class='post-count'>10</span></a> </li> <li class='archivedate'> <a href='https://miraiya34.blogspot.com/2023/10/'>октомври 2023<span class='post-count'>1</span></a> </li> </ul> </div> </div> </div> </div> </details> </div> <div class='widget ReportAbuse' data-version='2' id='ReportAbuse1'> <h3 class='title'> <a class='report_abuse' href='https://www.blogger.com/go/report-abuse' rel='noopener nofollow' target='_blank'> Сигнал за злоупотреба </a> </h3> </div> </div> </aside> <script type="text/javascript" src="https://resources.blogblog.com/blogblog/data/res/4054318308-indie_compiled.js" async="true"></script> <script type="text/javascript" src="https://www.blogger.com/static/v1/widgets/1581542668-widgets.js"></script> <script type='text/javascript'> window['__wavt'] = 'AOuZoY7nWa_iywc6uekwqSVNb_X03R1KFw:1765384475412';_WidgetManager._Init('//www.blogger.com/rearrange?blogID\x3d2712734474906705221','//miraiya34.blogspot.com/2023/11/game.html','2712734474906705221'); _WidgetManager._SetDataContext([{'name': 'blog', 'data': {'blogId': '2712734474906705221', 'title': 'miraiya', 'url': 'https://miraiya34.blogspot.com/2023/11/game.html', 'canonicalUrl': 'https://miraiya34.blogspot.com/2023/11/game.html', 'homepageUrl': 'https://miraiya34.blogspot.com/', 'searchUrl': 'https://miraiya34.blogspot.com/search', 'canonicalHomepageUrl': 'https://miraiya34.blogspot.com/', 'blogspotFaviconUrl': 'https://miraiya34.blogspot.com/favicon.ico', 'bloggerUrl': 'https://www.blogger.com', 'hasCustomDomain': false, 'httpsEnabled': true, 'enabledCommentProfileImages': true, 'gPlusViewType': 'FILTERED_POSTMOD', 'adultContent': false, 'analyticsAccountNumber': '', 'encoding': 'UTF-8', 'locale': 'bg', 'localeUnderscoreDelimited': 'bg', 'languageDirection': 'ltr', 'isPrivate': false, 'isMobile': false, 'isMobileRequest': false, 'mobileClass': '', 'isPrivateBlog': false, 'isDynamicViewsAvailable': true, 'feedLinks': '\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22miraiya - Atom\x22 href\x3d\x22https://miraiya34.blogspot.com/feeds/posts/default\x22 /\x3e\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/rss+xml\x22 title\x3d\x22miraiya - RSS\x22 href\x3d\x22https://miraiya34.blogspot.com/feeds/posts/default?alt\x3drss\x22 /\x3e\n\x3clink rel\x3d\x22service.post\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22miraiya - Atom\x22 href\x3d\x22https://www.blogger.com/feeds/2712734474906705221/posts/default\x22 /\x3e\n\n\x3clink rel\x3d\x22alternate\x22 type\x3d\x22application/atom+xml\x22 title\x3d\x22miraiya - Atom\x22 href\x3d\x22https://miraiya34.blogspot.com/feeds/7723233805515915774/comments/default\x22 /\x3e\n', 'meTag': '', 'adsenseHostId': 'ca-host-pub-1556223355139109', 'adsenseHasAds': false, 'adsenseAutoAds': false, 'boqCommentIframeForm': true, 'loginRedirectParam': '', 'view': '', 'dynamicViewsCommentsSrc': '//www.blogblog.com/dynamicviews/4224c15c4e7c9321/js/comments.js', 'dynamicViewsScriptSrc': '//www.blogblog.com/dynamicviews/a086d31c20bf4e54', 'plusOneApiSrc': 'https://apis.google.com/js/platform.js', 'disableGComments': true, 'interstitialAccepted': false, 'sharing': {'platforms': [{'name': '\u041f\u043e\u043b\u0443\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430', 'key': 'link', 'shareMessage': '\u041f\u043e\u043b\u0443\u0447\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0432\u0440\u044a\u0437\u043a\u0430', 'target': ''}, {'name': 'Facebook', 'key': 'facebook', 'shareMessage': '\u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435 \u0432/\u044a\u0432 Facebook', 'target': 'facebook'}, {'name': '\u041f\u0443\u0431\u043b\u0438\u043a\u0443\u0432\u0430\u0439\u0442\u0435 \u0432 \u0431\u043b\u043e\u0433\u0430 \u0441\u0438!', 'key': 'blogThis', 'shareMessage': '\u041f\u0443\u0431\u043b\u0438\u043a\u0443\u0432\u0430\u0439\u0442\u0435 \u0432 \u0431\u043b\u043e\u0433\u0430 \u0441\u0438!', 'target': 'blog'}, {'name': 'X', 'key': 'twitter', 'shareMessage': '\u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435 \u0432/\u044a\u0432 X', 'target': 'twitter'}, {'name': 'Pinterest', 'key': 'pinterest', 'shareMessage': '\u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435 \u0432/\u044a\u0432 Pinterest', 'target': 'pinterest'}, {'name': '\u0418\u043c\u0435\u0439\u043b', 'key': 'email', 'shareMessage': '\u0418\u043c\u0435\u0439\u043b', 'target': 'email'}], 'disableGooglePlus': true, 'googlePlusShareButtonWidth': 0, 'googlePlusBootstrap': '\x3cscript type\x3d\x22text/javascript\x22\x3ewindow.___gcfg \x3d {\x27lang\x27: \x27bg\x27};\x3c/script\x3e'}, 'hasCustomJumpLinkMessage': false, 'jumpLinkMessage': '\u041f\u0440\u043e\u0447\u0435\u0442\u0435\u0442\u0435 \u043e\u0449\u0435', 'pageType': 'item', 'postId': '7723233805515915774', 'pageName': 'GAME', 'pageTitle': 'miraiya: GAME'}}, {'name': 'features', 'data': {}}, {'name': 'messages', 'data': {'edit': '\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0435', 'linkCopiedToClipboard': '\u0412\u0440\u044a\u0437\u043a\u0430\u0442\u0430 \u0431\u0435 \u043a\u043e\u043f\u0438\u0440\u0430\u043d\u0430 \u0432 \u0431\u0443\u0444\u0435\u0440\u043d\u0430\u0442\u0430 \u043f\u0430\u043c\u0435\u0442!', 'ok': 'OK', 'postLink': '\u0412\u0440\u044a\u0437\u043a\u0430 \u043a\u044a\u043c \u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044f\u0442\u0430'}}, {'name': 'template', 'data': {'name': 'Contempo', 'localizedName': 'Contempo', 'isResponsive': true, 'isAlternateRendering': false, 'isCustom': false, 'variant': 'indie_light', 'variantId': 'indie_light'}}, {'name': 'view', 'data': {'classic': {'name': 'classic', 'url': '?view\x3dclassic'}, 'flipcard': {'name': 'flipcard', 'url': '?view\x3dflipcard'}, 'magazine': {'name': 'magazine', 'url': '?view\x3dmagazine'}, 'mosaic': {'name': 'mosaic', 'url': '?view\x3dmosaic'}, 'sidebar': {'name': 'sidebar', 'url': '?view\x3dsidebar'}, 'snapshot': {'name': 'snapshot', 'url': '?view\x3dsnapshot'}, 'timeslide': {'name': 'timeslide', 'url': '?view\x3dtimeslide'}, 'isMobile': false, 'title': 'GAME', 'description': ' Flappy Bird Flappy Bird !!! (game) If you want to have a very high score. Think out of this g...', 'url': 'https://miraiya34.blogspot.com/2023/11/game.html', 'type': 'item', 'isSingleItem': true, 'isMultipleItems': false, 'isError': false, 'isPage': false, 'isPost': true, 'isHomepage': false, 'isArchive': false, 'isLabelSearch': false, 'postId': 7723233805515915774}}, {'name': 'widgets', 'data': [{'title': '\u0422\u044a\u0440\u0441\u0435\u043d\u0435 \u0432 \u0442\u043e\u0437\u0438 \u0431\u043b\u043e\u0433', 'type': 'BlogSearch', 'sectionId': 'search_top', 'id': 'BlogSearch1'}, {'title': 'miraiya (\u0417\u0430\u0433\u043b\u0430\u0432\u043a\u0430)', 'type': 'Header', 'sectionId': 'header', 'id': 'Header1'}, {'title': '', 'type': 'FeaturedPost', 'sectionId': 'page_body', 'id': 'FeaturedPost1', 'postId': '7180782087362842375'}, {'title': '\u041f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u0438 \u0432 \u0431\u043b\u043e\u0433\u0430', 'type': 'Blog', 'sectionId': 'page_body', 'id': 'Blog1', 'posts': [{'id': '7723233805515915774', 'title': 'GAME', 'showInlineAds': true}], 'headerByline': {'regionName': 'header1', 'items': [{'name': 'share', 'label': ''}, {'name': 'timestamp', 'label': '-'}]}, 'footerBylines': [{'regionName': 'footer1', 'items': [{'name': 'comments', 'label': '\u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0430'}, {'name': 'icons', 'label': ''}]}, {'regionName': 'footer2', 'items': [{'name': 'labels', 'label': ''}]}, {'regionName': 'footer3', 'items': [{'name': 'location', 'label': '\u041c\u044f\u0441\u0442\u043e:'}]}], 'allBylineItems': [{'name': 'share', 'label': ''}, {'name': 'timestamp', 'label': '-'}, {'name': 'comments', 'label': '\u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440\u0430'}, {'name': 'icons', 'label': ''}, {'name': 'labels', 'label': ''}, {'name': 'location', 'label': '\u041c\u044f\u0441\u0442\u043e:'}]}, {'title': '', 'type': 'PopularPosts', 'sectionId': 'page_body', 'id': 'PopularPosts1', 'posts': [{'title': 'IT \u043d\u0438\u043d\u0434\u0436\u0438', 'id': 1137007670885392922}, {'title': 'iframe \u043d\u0430 \u0438\u0433\u0440\u0430', 'id': 518874803282931220}, {'title': '6666666666666666666666', 'id': 454455154950203855}]}, {'type': 'Attribution', 'sectionId': 'footer', 'id': 'Attribution1'}, {'title': '\u0412\u0441\u0438\u0447\u043a\u043e \u0437\u0430 \u043c\u0435\u043d', 'type': 'Profile', 'sectionId': 'sidebar_top', 'id': 'Profile1'}, {'title': '', 'type': 'BlogArchive', 'sectionId': 'sidebar_bottom', 'id': 'BlogArchive1'}, {'title': '', 'type': 'ReportAbuse', 'sectionId': 'sidebar_bottom', 'id': 'ReportAbuse1'}]}]); _WidgetManager._RegisterWidget('_BlogSearchView', new _WidgetInfo('BlogSearch1', 'search_top', document.getElementById('BlogSearch1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_HeaderView', new _WidgetInfo('Header1', 'header', document.getElementById('Header1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_FeaturedPostView', new _WidgetInfo('FeaturedPost1', 'page_body', document.getElementById('FeaturedPost1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogView', new _WidgetInfo('Blog1', 'page_body', document.getElementById('Blog1'), {'cmtInteractionsEnabled': false, 'lightboxEnabled': true, 'lightboxModuleUrl': 'https://www.blogger.com/static/v1/jsbin/2354254657-lbx__bg.js', 'lightboxCssUrl': 'https://www.blogger.com/static/v1/v-css/828616780-lightbox_bundle.css'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_PopularPostsView', new _WidgetInfo('PopularPosts1', 'page_body', document.getElementById('PopularPosts1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_AttributionView', new _WidgetInfo('Attribution1', 'footer', document.getElementById('Attribution1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ProfileView', new _WidgetInfo('Profile1', 'sidebar_top', document.getElementById('Profile1'), {}, 'displayModeFull')); _WidgetManager._RegisterWidget('_BlogArchiveView', new _WidgetInfo('BlogArchive1', 'sidebar_bottom', document.getElementById('BlogArchive1'), {'languageDirection': 'ltr', 'loadingMessage': '\u0417\u0430\u0440\u0435\u0436\u0434\u0430 \u0441\u0435\x26hellip;'}, 'displayModeFull')); _WidgetManager._RegisterWidget('_ReportAbuseView', new _WidgetInfo('ReportAbuse1', 'sidebar_bottom', document.getElementById('ReportAbuse1'), {}, 'displayModeFull')); </script> </body> </html>