{"id":998,"date":"2023-05-13T13:18:59","date_gmt":"2023-05-13T04:18:59","guid":{"rendered":"https:\/\/tippang.net\/?page_id=998"},"modified":"2023-05-13T13:18:59","modified_gmt":"2023-05-13T04:18:59","slug":"catch-the-fruit","status":"publish","type":"page","link":"https:\/\/tippang.net\/?page_id=998","title":{"rendered":"Catch the Fruit"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Catch the Fruit<\/title>\n  <style>\n    canvas {\n      display: block;\n      margin: 0 auto;\n      background-color: lightgray;\n    }\n  <\/style>\n<\/head>\n<body>\n  <canvas id=\"gameCanvas\" width=\"800\" height=\"600\"><\/canvas>\n  <script>\n    const canvas = document.getElementById('gameCanvas');\n    const ctx = canvas.getContext('2d');\n\n    let basket = {\n      x: canvas.width \/ 2 - 50,\n      y: canvas.height - 100,\n      width: 100,\n      height: 10\n    };\n\n    let fruit = {\n      x: Math.random() * (canvas.width - 30),\n      y: 0,\n      width: 30,\n      height: 30,\n      dy: 2\n    };\n\n    let score = 0;\n\n    function drawBasket() {\n      ctx.fillStyle = 'black';\n      ctx.fillRect(basket.x, basket.y, basket.width, basket.height);\n    }\n\n    function drawFruit() {\n      ctx.fillStyle = 'orange';\n      ctx.beginPath();\n      ctx.arc(fruit.x, fruit.y, fruit.width \/ 2, 0, Math.PI * 2);\n      ctx.fill();\n      ctx.closePath();\n    }\n\n    function drawScore() {\n      ctx.font = '24px Arial';\n      ctx.fillStyle = 'black';\n      ctx.fillText(`Score: ${score}`, 10, 30);\n    }\n\n    function gameLoop() {\n      ctx.clearRect(0, 0, canvas.width, canvas.height);\n\n      drawBasket();\n      drawFruit();\n      drawScore();\n\n      fruit.y += fruit.dy;\n\n      if (fruit.y + fruit.height > canvas.height) {\n        fruit.x = Math.random() * (canvas.width - fruit.width);\n        fruit.y = 0;\n      }\n\n      if (fruit.y + fruit.height > basket.y && fruit.x > basket.x && fruit.x < basket.x + basket.width) {\n        score++;\n        fruit.x = Math.random() * (canvas.width - fruit.width);\n        fruit.y = 0;\n      }\n\n      requestAnimationFrame(gameLoop);\n    }\n\n    function moveBasket(e) {\n      let mouseX = e.clientX - canvas.getBoundingClientRect().left;\n      basket.x = mouseX - basket.width \/ 2;\n    }\n\n    canvas.addEventListener('mousemove', moveBasket);\n\n    gameLoop();\n  <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Catch the Fruit<\/p>\n","protected":false},"author":3,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"footnotes":""},"class_list":["post-998","page","type-page","status-publish","hentry"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Catch the Fruit - tippang.net<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/tippang.net\/?page_id=998\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:locale\" content=\"en_US\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:type\" content=\"article\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:title\" content=\"Catch the Fruit - tippang.net\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:description\" content=\"Catch the Fruit\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tippang.net\/?page_id=998\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:site_name\" content=\"tippang.net\" class=\"yoast-seo-meta-tag\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" class=\"yoast-seo-meta-tag\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tippang.net\/?page_id=998\",\"url\":\"https:\/\/tippang.net\/?page_id=998\",\"name\":\"Catch the Fruit - tippang.net\",\"isPartOf\":{\"@id\":\"https:\/\/tippang.net\/#website\"},\"datePublished\":\"2023-05-13T04:18:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/tippang.net\/?page_id=998#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tippang.net\/?page_id=998\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tippang.net\/?page_id=998#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tippang.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Catch the Fruit\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tippang.net\/#website\",\"url\":\"https:\/\/tippang.net\/\",\"name\":\"tippang.net\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/tippang.net\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tippang.net\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/tippang.net\/#organization\",\"name\":\"tippang.net\",\"url\":\"https:\/\/tippang.net\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tippang.net\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/tippang.net\/wp-content\/uploads\/2021\/02\/cropped-\u110e\u1162\u1102\u1165\u11af\u110b\u1161\u110b\u1175\u110f\u1169\u11ab1_\u1100\u1165\u1107\u116e\u11a8\u110b\u1175.png\",\"contentUrl\":\"https:\/\/tippang.net\/wp-content\/uploads\/2021\/02\/cropped-\u110e\u1162\u1102\u1165\u11af\u110b\u1161\u110b\u1175\u110f\u1169\u11ab1_\u1100\u1165\u1107\u116e\u11a8\u110b\u1175.png\",\"width\":280,\"height\":280,\"caption\":\"tippang.net\"},\"image\":{\"@id\":\"https:\/\/tippang.net\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Catch the Fruit - tippang.net","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/tippang.net\/?page_id=998","og_locale":"en_US","og_type":"article","og_title":"Catch the Fruit - tippang.net","og_description":"Catch the Fruit","og_url":"https:\/\/tippang.net\/?page_id=998","og_site_name":"tippang.net","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tippang.net\/?page_id=998","url":"https:\/\/tippang.net\/?page_id=998","name":"Catch the Fruit - tippang.net","isPartOf":{"@id":"https:\/\/tippang.net\/#website"},"datePublished":"2023-05-13T04:18:59+00:00","breadcrumb":{"@id":"https:\/\/tippang.net\/?page_id=998#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tippang.net\/?page_id=998"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tippang.net\/?page_id=998#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tippang.net\/"},{"@type":"ListItem","position":2,"name":"Catch the Fruit"}]},{"@type":"WebSite","@id":"https:\/\/tippang.net\/#website","url":"https:\/\/tippang.net\/","name":"tippang.net","description":"","publisher":{"@id":"https:\/\/tippang.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tippang.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/tippang.net\/#organization","name":"tippang.net","url":"https:\/\/tippang.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tippang.net\/#\/schema\/logo\/image\/","url":"https:\/\/tippang.net\/wp-content\/uploads\/2021\/02\/cropped-\u110e\u1162\u1102\u1165\u11af\u110b\u1161\u110b\u1175\u110f\u1169\u11ab1_\u1100\u1165\u1107\u116e\u11a8\u110b\u1175.png","contentUrl":"https:\/\/tippang.net\/wp-content\/uploads\/2021\/02\/cropped-\u110e\u1162\u1102\u1165\u11af\u110b\u1161\u110b\u1175\u110f\u1169\u11ab1_\u1100\u1165\u1107\u116e\u11a8\u110b\u1175.png","width":280,"height":280,"caption":"tippang.net"},"image":{"@id":"https:\/\/tippang.net\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/pages\/998","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/tippang.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=998"}],"version-history":[{"count":1,"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/pages\/998\/revisions"}],"predecessor-version":[{"id":1000,"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/pages\/998\/revisions\/1000"}],"wp:attachment":[{"href":"https:\/\/tippang.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=998"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}