{"id":1007,"date":"2023-05-13T13:22:05","date_gmt":"2023-05-13T04:22:05","guid":{"rendered":"https:\/\/tippang.net\/?page_id=1007"},"modified":"2023-05-13T13:22:06","modified_gmt":"2023-05-13T04:22:06","slug":"paddle-ball","status":"publish","type":"page","link":"https:\/\/tippang.net\/?page_id=1007","title":{"rendered":"Paddle Ball"},"content":{"rendered":"\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>Paddle Ball<\/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 score = 0;\n    let paddle = { x: canvas.width \/ 2 - 50, y: canvas.height - 20, width: 100, height: 10 };\n\n    let ball = {\n      x: canvas.width \/ 2,\n      y: canvas.height \/ 2,\n      radius: 7,\n      dx: 4,\n      dy: -4\n    };\n\n    let target = {\n      x: Math.random() * (canvas.width - 50),\n      y: Math.random() * (canvas.height \/ 2 - 50),\n      radius: 25\n    };\n\n    function drawPaddle() {\n      ctx.fillStyle = 'black';\n      ctx.fillRect(paddle.x, paddle.y, paddle.width, paddle.height);\n    }\n\n    function drawBall() {\n      ctx.beginPath();\n      ctx.arc(ball.x, ball.y, ball.radius, 0, Math.PI * 2);\n      ctx.fillStyle = 'blue';\n      ctx.fill();\n      ctx.closePath();\n    }\n\n    function drawTarget() {\n      ctx.beginPath();\n      ctx.arc(target.x, target.y, target.radius, 0, Math.PI * 2);\n      ctx.fillStyle = 'red';\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      drawPaddle();\n      drawBall();\n      drawTarget();\n      drawScore();\n\n      ball.x += ball.dx;\n      ball.y += ball.dy;\n\n      if (ball.x + ball.radius > canvas.width || ball.x - ball.radius < 0) {\n        ball.dx = -ball.dx;\n      }\n\n      if (ball.y - ball.radius < 0) {\n        ball.dy = -ball.dy;\n      } else if (\n        ball.y + ball.radius > paddle.y &&\n        ball.x > paddle.x && ball.x < paddle.x + paddle.width\n      ) {\n        ball.dy = -ball.dy;\n      } else if (ball.y + ball.radius > canvas.height) {\n        ball.x = canvas.width \/ 2;\n        ball.y = canvas.height \/ 2;\n        ball.dy = -ball.dy;\n      }\n\n      let distance = Math.hypot(ball.x - target.x, ball.y - target.y);\n      if (distance < ball.radius + target.radius) {\n        score++;\n        target.x = Math.random() * (canvas.width - 50);\n        target.y = Math.random() * (canvas.height \/ 2 - 50);\n      }\n\n      requestAnimationFrame(gameLoop);\n    }\n\n    function movePaddle(e) {\n      let mouseX = e.clientX - canvas.getBoundingClientRect().left;\n      paddle.x = mouseX - paddle.width \/ 2;\n    }\n\n    canvas.addEventListener('mousemove', movePaddle);\n\n    gameLoop();\n  <\/script>\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>Paddle Ball<\/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-1007","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>Paddle Ball - 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=1007\" 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=\"Paddle Ball - tippang.net\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:description\" content=\"Paddle Ball\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tippang.net\/?page_id=1007\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"og:site_name\" content=\"tippang.net\" class=\"yoast-seo-meta-tag\" \/>\n<meta property=\"article:modified_time\" content=\"2023-05-13T04:22:06+00:00\" 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=1007\",\"url\":\"https:\/\/tippang.net\/?page_id=1007\",\"name\":\"Paddle Ball - tippang.net\",\"isPartOf\":{\"@id\":\"https:\/\/tippang.net\/#website\"},\"datePublished\":\"2023-05-13T04:22:05+00:00\",\"dateModified\":\"2023-05-13T04:22:06+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/tippang.net\/?page_id=1007#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tippang.net\/?page_id=1007\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tippang.net\/?page_id=1007#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tippang.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Paddle Ball\"}]},{\"@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":"Paddle Ball - 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=1007","og_locale":"en_US","og_type":"article","og_title":"Paddle Ball - tippang.net","og_description":"Paddle Ball","og_url":"https:\/\/tippang.net\/?page_id=1007","og_site_name":"tippang.net","article_modified_time":"2023-05-13T04:22:06+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/tippang.net\/?page_id=1007","url":"https:\/\/tippang.net\/?page_id=1007","name":"Paddle Ball - tippang.net","isPartOf":{"@id":"https:\/\/tippang.net\/#website"},"datePublished":"2023-05-13T04:22:05+00:00","dateModified":"2023-05-13T04:22:06+00:00","breadcrumb":{"@id":"https:\/\/tippang.net\/?page_id=1007#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tippang.net\/?page_id=1007"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tippang.net\/?page_id=1007#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tippang.net\/"},{"@type":"ListItem","position":2,"name":"Paddle Ball"}]},{"@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\/1007","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=1007"}],"version-history":[{"count":1,"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/pages\/1007\/revisions"}],"predecessor-version":[{"id":1009,"href":"https:\/\/tippang.net\/index.php?rest_route=\/wp\/v2\/pages\/1007\/revisions\/1009"}],"wp:attachment":[{"href":"https:\/\/tippang.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1007"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}