{"id":2062,"date":"2026-03-02T04:38:21","date_gmt":"2026-03-02T04:38:21","guid":{"rendered":"https:\/\/ab.new9plus.com\/?p=2062"},"modified":"2026-03-02T05:08:41","modified_gmt":"2026-03-02T05:08:41","slug":"%d9%84%d8%b9%d8%a8%d9%87","status":"publish","type":"post","link":"https:\/\/ab.new9plus.com\/?p=2062","title":{"rendered":"\u0644\u0639\u0628\u0647"},"content":{"rendered":"\n<iframe style=\"position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: 9999999; border: none; background-color: #ffffff;\" srcdoc='\n<!DOCTYPE html>\n<html>\n<head>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n    <style>\n        body { margin: 0; overflow: hidden; background: #f0f0f0; font-family: Arial, sans-serif; touch-action: none; }\n        #gameCanvas { display: block; background: #fff; border-bottom: 3px solid #333; width: 100%; }\n        .ui { position: absolute; top: 20px; width: 100%; text-align: center; pointer-events: none; }\n        .hearts { font-size: 25px; color: red; }\n        .score { font-size: 20px; font-weight: bold; color: #333; }\n        #adBox { \n            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; \n            background: rgba(0,0,0,0.8); z-index: 100; flex-direction: column; \n            justify-content: center; align-items: center; color: white;\n        }\n        button { \n            padding: 15px 30px; font-size: 18px; cursor: pointer; background: #2ecc71; \n            color: white; border: none; border-radius: 5px; margin-top: 20px;\n        }\n    <\/style>\n<\/head>\n<body onclick=\"jump()\">\n    <div class=\"ui\">\n        <div class=\"hearts\" id=\"heartsDisplay\">\u2764\ufe0f\u2764\ufe0f\u2764\ufe0f<\/div>\n        <div class=\"score\" id=\"scoreDisplay\">\u0627\u0644\u0646\u062a\u064a\u062c\u0629: 0<\/div>\n    <\/div>\n\n    <div id=\"adBox\">\n        <h2>\u0627\u0646\u062a\u0647\u062a \u0627\u0644\u0645\u062d\u0627\u0648\u0644\u0627\u062a!<\/h2>\n        <p>\u0634\u0627\u0647\u062f \u0625\u0639\u0644\u0627\u0646 \u0644\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 3 \u0623\u0631\u0648\u0627\u062d \u0625\u0636\u0627\u0641\u064a\u0629 \u0648\u0627\u0644\u0627\u0633\u062a\u0645\u0631\u0627\u0631<\/p>\n        <button onclick=\"showAd()\">\ud83d\udcfa \u0645\u0634\u0627\u0647\u062f\u0629 \u0625\u0639\u0644\u0627\u0646 \u0648\u0627\u0644\u0627\u0633\u062a\u0645\u0631\u0627\u0631<\/button>\n        <button onclick=\"location.reload()\" style=\"background:#e74c3c\">\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u0644\u0639\u0628 \u0645\u0646 \u0627\u0644\u0635\u0641\u0631<\/button>\n    <\/div>\n\n    <canvas id=\"gameCanvas\"><\/canvas>\n\n    <script>\n        const canvas = document.getElementById(\"gameCanvas\");\n        const ctx = canvas.getContext(\"2d\");\n        canvas.width = window.innerWidth;\n        canvas.height = 300;\n\n        let score = 0, lives = 3, gameActive = true, frame = 0;\n        let dino = { x: 50, y: 220, w: 40, h: 40, dy: 0, g: 0.8, jump: -12, grounded: true };\n        let obstacles = [];\n\n        function jump() {\n            if (dino.grounded && gameActive) {\n                dino.dy = dino.jump;\n                dino.grounded = false;\n            }\n        }\n\n        function showAd() {\n            alert(\"\u062a\u062e\u064a\u0644 \u0623\u0646 \u0627\u0644\u0625\u0639\u0644\u0627\u0646 \u0638\u0647\u0631 \u0627\u0644\u0622\u0646... \u062a\u0645 \u0645\u0646\u062d\u0643 3 \u0623\u0631\u0648\u0627\u062d!\");\n            lives = 3;\n            document.getElementById(\"adBox\").style.display = \"none\";\n            updateUI();\n            gameActive = true;\n            loop();\n        }\n\n        function updateUI() {\n            document.getElementById(\"heartsDisplay\").innerText = \"\u2764\ufe0f\".repeat(lives);\n            document.getElementById(\"scoreDisplay\").innerText = \"\u0627\u0644\u0646\u062a\u064a\u062c\u0629: \" + score;\n        }\n\n        function loop() {\n            if (!gameActive) return;\n            ctx.clearRect(0, 0, canvas.width, canvas.height);\n            \n            \/\/ \u0641\u064a\u0632\u064a\u0627\u0621 \u0627\u0644\u0644\u0627\u0639\u0628\n            dino.y += dino.dy;\n            if (dino.y + dino.h < 260) { dino.dy += dino.g; dino.grounded = false; }\n            else { dino.y = 260 - dino.h; dino.dy = 0; dino.grounded = true; }\n            \n            ctx.fillStyle = \"#333\";\n            ctx.fillRect(dino.x, dino.y, dino.w, dino.h);\n\n            \/\/ \u0627\u0644\u0639\u0642\u0628\u0627\u062a\n            if (frame % 100 === 0) obstacles.push({ x: canvas.width, w: 20, h: 40 });\n            for (let i = obstacles.length - 1; i >= 0; i--) {\n                obstacles[i].x -= 5 + (score\/10);\n                ctx.fillStyle = \"red\";\n                ctx.fillRect(obstacles[i].x, 260 - obstacles[i].h, obstacles[i].w, obstacles[i].h);\n\n                \/\/ \u062a\u0635\u0627\u062f\u0645\n                if (dino.x < obstacles[i].x + obstacles[i].w &#038;&#038; dino.x + dino.w > obstacles[i].x && dino.y + dino.h > 260 - obstacles[i].h) {\n                    lives--;\n                    obstacles.splice(i, 1);\n                    updateUI();\n                    if (lives <= 0) {\n                        gameActive = false;\n                        document.getElementById(\"adBox\").style.display = \"flex\";\n                    }\n                } else if (obstacles[i].x + obstacles[i].w < 0) {\n                    obstacles.splice(i, 1);\n                    score++;\n                    updateUI();\n                }\n            }\n            frame++;\n            requestAnimationFrame(loop);\n        }\n        loop();\n    <\/script>\n<\/body>\n<\/html>\n'><\/iframe>\n\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-2062","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"_links":{"self":[{"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=\/wp\/v2\/posts\/2062","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2062"}],"version-history":[{"count":14,"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=\/wp\/v2\/posts\/2062\/revisions"}],"predecessor-version":[{"id":2083,"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=\/wp\/v2\/posts\/2062\/revisions\/2083"}],"wp:attachment":[{"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2062"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2062"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ab.new9plus.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2062"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}