{"id":2843,"date":"2024-07-16T14:26:24","date_gmt":"2024-07-16T14:26:24","guid":{"rendered":"https:\/\/cpstesters.com\/%d7%91%d7%93%d7%99%d7%a7%d7%aa-%d7%9e%d7%a1%d7%9a-%d7%9e%d7%92%d7%a2-%d7%91%d7%90%d7%99%d7%a0%d7%98%d7%a8%d7%a0%d7%98-multi-touch-tester\/"},"modified":"2024-09-17T16:29:09","modified_gmt":"2024-09-17T16:29:09","slug":"touch-screen-test","status":"publish","type":"page","link":"https:\/\/cpstesters.com\/he\/touch-screen-test\/","title":{"rendered":"\u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05d1\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 | \u05d1\u05d5\u05d3\u05e7 \u05e8\u05d1 \u05de\u05d2\u05e2"},"content":{"rendered":"\n<p>\u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05dc\u05e0\u05d9\u05d9\u05d3 \u05d5\u05dc\u05de\u05d7\u05e9\u05d1 \u05e0\u05d9\u05d9\u05d3 \u05d4\u05d5\u05d0 \u05db\u05dc\u05d9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05dd \u05de\u05d2\u05e2 \u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da \u05e4\u05d5\u05e2\u05dc \u05db\u05e8\u05d0\u05d5\u05d9 \u05d0\u05d5 \u05dc\u05d0, \u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d6\u05d4 \u05e2\u05db\u05e9\u05d9\u05d5!<\/p>\n<style>\r\n        #box {\r\n            position:relative;\r\n            width:100%; \r\n            background-color:#FFB15E;\r\n            font-size: 2rem; \r\n            margin-bottom:20px;\r\n\t\t\tcolor:white;\r\n\t\t\tpadding-top:50px;\r\n\t\t\tpadding-bottom:50px;\r\n\t\t\ttext-align:center;\r\n        }\r\n        #box.fullscreen{\r\n            background-color: #2d2d2d;\r\n            position:fixed;\r\n            top: 0px;\r\n            left: 0px;\r\n            height: 100%!important;;\r\n        }\r\n        .point{\r\n            border-radius:50%;\r\n            width:30px;\r\n            height:30px;\r\n            background-color:red;\r\n            position:fixed;\r\n        }\r\n        #fs-button{\r\n            width:30px;\r\n            height:30px;\r\n            position:absolute;\r\n            bottom:5px;\r\n            right:5px;\r\n            background-image: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='30' height='30' viewBox='0 0 14 14' fill='%23dddddd'%3E%3Cpath d='M2,9H0v5h5v-2H2V9z M0,5h2V2h3V0H0V5z M12,12H9v2h5V9h-2V12z M9,0v2h3v3h2V0H9z'\/%3E%3C\/svg%3E\");\r\n        }\r\n        .fullscreen #fs-button\r\n        {\r\n            background-image: url(\"data:image\/svg+xml,%3Csvg xmlns='http:\/\/www.w3.org\/2000\/svg' width='30' height='30' viewBox='0 0 14 14' fill='%23dddddd'%3E%3Cpath d='M0,11h3v3h2V9H0V11z M3,3H0v2h5V0H3V3z M9,14h2v-3h3V9H9V14z M11,3V0H9v5h5V3H11z'\/%3E%3C\/svg%3E\");\r\n        }\r\n        .current-touch, .max-touch, #box{\r\n            text-align: center;\r\n        }\r\n        .current-touch, .max-touch{\r\n            font-size: 5rem; \r\n        }\r\n    <\/style>\r\n\r\n<div id=\"box\">\r\n        <div id=\"info\">\r\n            <div class=\"row\"><div class=\"col d-flex align-items-center justify-content-end p-0\" style=\"font-size:1rem\">current<\/div><div class=\"current-touch col p-0\">0<\/div><div class=\"col p-0\"><\/div><\/div>\r\n            <div class=\"row\"><div class=\"col d-flex align-items-center justify-content-end p-0\" style=\"font-size:1rem\">max<\/div><div class=\"max-touch col p-0\">0<\/div><div class=\"col p-0\"><\/div><\/div>\r\n        <\/div>\r\n        \r\n    <\/div>   \r\n\r\n\r\n<script>\r\n    \r\nvar box = document.getElementById(\"box\");\r\nvar currnetTouchE = document.getElementsByClassName('current-touch')[0];\r\nvar maxTouchE = document.getElementsByClassName('max-touch')[0];\r\nvar maxTouch = 0;\r\n\r\nvar pointSize = 30;\r\n\r\nfunction updateTouch(number)\r\n{\r\n    currnetTouchE.innerHTML = number;\r\n    if (number>maxTouch) maxTouch = number;\r\n    maxTouchE.innerHTML = maxTouch;\r\n    \r\n}\r\n\r\n\r\nbox.addEventListener(\"touchstart\", handleStart, false);\r\nbox.addEventListener(\"touchend\", handleEnd, false);\r\nbox.addEventListener(\"touchcancel\", handleCancel, false);\r\nbox.addEventListener(\"touchmove\", handleMove, false);\r\n\/\/var ongoingTouches = [];\r\n\r\nfunction copyTouch({ identifier, pageX, pageY }) {\r\n  return { identifier, pageX, pageY };\r\n}\r\n\r\nfunction handleStart (e)\r\n{\r\n    var touches = e.changedTouches;\r\n    for (var i = 0; i < touches.length; i++)\r\n    {\r\n        var point = document.createElement('div');\r\n        \/\/ongoingTouches.push(copyTouch(touches[i]));\r\n        point.className = 'point';\r\n        point.id = 'touch-'+touches[i].identifier;\r\n        point.style.left = touches[i].clientX-pointSize\/2+'px';\r\n        point.style.top = touches[i].clientY-pointSize\/2+'px';\r\n        point.style.backgroundColor = colorForTouch(touches[i]);\r\n        document.body.appendChild(point);\r\n    }\r\n    updateTouch(e.touches.length);\r\n    e.preventDefault();\r\n}\r\n\r\nfunction handleMove(e)\r\n{\r\n    var touches = e.changedTouches;\r\n    for (var i = 0; i < touches.length; i++)\r\n    {\r\n        var point = document.getElementById('touch-'+touches[i].identifier);\r\n        point.style.left = touches[i].clientX-pointSize\/2+'px';\r\n        point.style.top = touches[i].clientY-pointSize\/2+'px';\r\n    }\r\n    updateTouch(e.touches.length);\r\n    e.preventDefault();\r\n}\r\n\r\nfunction handleEnd (e)\r\n{\r\n     var touches = e.changedTouches;\r\n     for (var i = 0; i < touches.length; i++) \r\n     {\r\n        setTimeout(function(){\r\n           \r\n        },200);\r\n       document.getElementById('touch-'+touches[i].identifier).remove();\r\n     }\r\n     updateTouch(e.touches.length);\r\n}\r\n\r\nfunction handleCancel (e)\r\n{\r\n    handleEnd(e);\r\n}\r\n\r\n\r\nfunction colorForTouch(touch) {\r\n    var color = \"#000000\";\r\n    switch(touch.identifier)\r\n    {\r\n        case 0: color = \"#ff0000\";break;\r\n        case 1: color = \"#ff00ff\";break;\r\n        case 2: color = \"#0000ff\";break;\r\n        case 3: color = \"#00ffff\";break;\r\n        case 4: color = \"#00ff00\";break;\r\n        case 5: color = \"#ffff00\";break;\r\n        case 6: color = \"#ffa800\";break;\r\n        default: color = \"#000000\";\r\n    }\r\n    return color;\r\n}\r\n\r\nif (!(typeof box.ontouchstart != \"undefined\")) { \r\n    box.innerHTML = '<p>This test cannot be used on device without touch screen.<\/p>\\n\\\r\n                     <p style=\"font-size:1rem;\">If you see this message, the test will not work.<\/p>   ';\r\n    box.style.backgroundColor = \"#FFB15E\";\r\n} \r\n<\/script>\n\n<div style=\"height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n<h2 class=\"wp-block-heading\">\u05d1\u05d5\u05d3\u05e7 \u05de\u05e1\u05da \u05de\u05d2\u05e2<\/h2>\n\n<p>\u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05d4\u05d9\u05d0 \u05d4\u05d8\u05db\u05e0\u05d9\u05e7\u05d4 \u05e9\u05d1\u05d4 \u05d0\u05ea\u05d4 \u05de\u05e9\u05ea\u05de\u05e9 \u05db\u05d3\u05d9 \u05dc\u05d4\u05e2\u05e8\u05d9\u05da \u05d0\u05ea \u05d4\u05de\u05e1\u05da \u05e9\u05dc\u05da. \u05d9\u05e9\u05e0\u05df \u05de\u05e1\u05e4\u05e8 \u05d3\u05e8\u05db\u05d9\u05dd \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d1\u05d3\u05d9\u05e7\u05d4 \u05d6\u05d5 \u05db\u05d3\u05d9 \u05dc\u05d6\u05d4\u05d5\u05ea \u05d0\u05ea \u05d4\u05e0\u05e7\u05d5\u05d3\u05d5\u05ea \u05d4\u05de\u05ea\u05d5\u05ea. \u05dc\u05d1\u05d5\u05d3\u05e7 \u05d4\u05d6\u05d4 \u05d9\u05e9 \u05d8\u05db\u05e0\u05d9\u05e7\u05d4 \u05de\u05d9\u05d5\u05d7\u05d3\u05ea \u05e9\u05de\u05e8\u05d0\u05d4 \u05dc\u05da \u05d1\u05d3\u05d9\u05d5\u05e7 \u05d4\u05d9\u05db\u05df \u05e0\u05de\u05e6\u05d0\u05d9\u05dd \u05d4\u05d0\u05d6\u05d5\u05e8\u05d9\u05dd \u05d4\u05d1\u05e2\u05d9\u05d9\u05ea\u05d9\u05d9\u05dd. \u05d6\u05d4 \u05d1\u05d5\u05d3\u05e7 \u05d0\u05ea \u05d4\u05e0\u05e7\u05d5\u05d3\u05d5\u05ea \u05d4\u05de\u05ea\u05d5\u05ea \u05e9\u05dc \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05d5\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05e0\u05dc\u05d9\u05d5\u05ea \u05e8\u05d1-\u05de\u05d2\u05e2 \u05e9\u05dc \u05d7\u05de\u05e9 \u05e0\u05e7\u05d5\u05d3\u05d5\u05ea.<\/p>\n\n<p>\u05d9\u05e9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc \u05d4\u05d8\u05dc\u05e4\u05d5\u05df \u05d4\u05d7\u05db\u05dd \u05db\u05d3\u05d9 \u05dc\u05d0\u05de\u05ea \u05d0\u05ea \u05d0\u05d9\u05db\u05d5\u05ea \u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05d5\u05e9\u05d9\u05de\u05d5\u05e9\u05d9\u05d5\u05ea\u05d5. \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05e2\u05e8\u05d9\u05da \u05d0\u05ea \u05d4\u05d1\u05d9\u05e6\u05d5\u05e2\u05d9\u05dd \u05e9\u05dc \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05d2\u05e2 \u05e4\u05e9\u05d5\u05d8\u05d4 \u05dc\u05de\u05e1\u05da. \u05d1\u05d3\u05d9\u05e7\u05d5\u05ea \u05d4\u05de\u05d2\u05e2, \u05e9\u05db\u05dc \u05d0\u05d7\u05ea \u05de\u05d4\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05ea \u05d1\u05d0\u05e1\u05d8\u05e8\u05d8\u05d2\u05d9\u05d4 \u05e9\u05d5\u05e0\u05d4, \u05de\u05e1\u05d9\u05d9\u05e2\u05d5\u05ea \u05dc\u05da \u05d1\u05d0\u05d9\u05ea\u05d5\u05e8 \u05d5\u05e0\u05d9\u05ea\u05d5\u05d7 \u05db\u05dc <a href=\"https:\/\/www.lifewire.com\/fixes-for-broken-touch-screen-4149514\" target=\"_blank\" rel=\"noreferrer noopener\">\u05d4\u05d1\u05e2\u05d9\u05d5\u05ea \u05e9\u05dc \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc\u05da<\/a> \u05e2\u05e9\u05d5\u05d9\u05d5\u05ea \u05dc\u05d4\u05d9\u05ea\u05e7\u05dc \u05d1\u05d4\u05df.<\/p>\n\n<h2 class=\"wp-block-heading\">\u05db\u05d9\u05e6\u05d3 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05de\u05d2\u05e2 \u05de\u05e1\u05da?<\/h2>\n\n<p>\u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05ea \u05d4\u05d1\u05d3\u05d9\u05e7\u05d4, \u05d2\u05e2 \u05d1\u05de\u05e1\u05da \u05d1\u05d7\u05dc\u05e7 \u05d4\u05e4\u05e0\u05d9\u05de\u05d9 \u05e9\u05dc \u05d4\u05ea\u05d9\u05d1\u05d4 \u05dc\u05de\u05e2\u05dc\u05d4. \u05db\u05d3\u05d9 \u05dc\u05d4\u05ea\u05d0\u05d9\u05dd \u05d1\u05e7\u05dc\u05d5\u05ea \u05d0\u05e6\u05d1\u05e2\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea, \u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05de\u05e1\u05da \u05de\u05dc\u05d0 \u05d1\u05e4\u05d9\u05e0\u05d4 \u05d4\u05e9\u05de\u05d0\u05dc\u05d9\u05ea \u05d4\u05ea\u05d7\u05ea\u05d5\u05e0\u05d4 \u05e9\u05dc \u05e9\u05d3\u05d4 \u05d4\u05d1\u05d3\u05d9\u05e7\u05d4. \u05d0\u05dd \u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05d0\u05d5 \u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05d0\u05d9\u05e0\u05dd \u05ea\u05d5\u05d0\u05de\u05d9\u05dd, \u05ea\u05d5\u05e6\u05d2 \u05d4\u05d5\u05d3\u05e2\u05d4 \u05de\u05d9\u05d5\u05d7\u05d3\u05ea \u05d1\u05ea\u05d9\u05d1\u05d4.<\/p>\n\n<p>\u05e0\u05e1\u05d4 \u05d0\u05ea Multi Touch Test \u05d0\u05dd \u05d0\u05ea\u05d4 \u05dc\u05d0 \u05de\u05d7\u05e4\u05e9 \u05e0\u05e7\u05d5\u05d3\u05d5\u05ea \u05de\u05ea\u05d5\u05ea \u05e2\u05dc \u05d4\u05de\u05e1\u05da \u05e9\u05dc\u05da \u05d0\u05d1\u05dc \u05e1\u05e7\u05e8\u05df \u05dc\u05d3\u05e2\u05ea \u05db\u05de\u05d4 \u05d0\u05e6\u05d1\u05e2\u05d5\u05ea \u05d4\u05d5\u05d0 \u05d9\u05db\u05d5\u05dc \u05dc\u05d6\u05d4\u05d5\u05ea. \u05d0\u05d7\u05d3 \u05de\u05d1\u05d3\u05d9\u05e7\u05d5\u05ea \u05d4\u05de\u05e1\u05da \u05d4\u05e0\u05d9\u05d9\u05d3 \u05d4\u05d1\u05e1\u05d9\u05e1\u05d9 \u05d1\u05d9\u05d5\u05ea\u05e8 \u05e2\u05dd \u05e8\u05d9\u05d1\u05d5\u05d9 \u05de\u05d2\u05e2, \u05d4\u05d5\u05d0 \u05d7\u05e1\u05e8 \u05db\u05dc \u05db\u05dc\u05d9 \u05e6\u05d9\u05d5\u05e8 \u05d0\u05d5 \u05ea\u05db\u05d5\u05e0\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea.<\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"500\" src=\"https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/touch-test.jpg\" alt=\"&#x5D1;&#x5D3;&#x5D9;&#x5E7;&#x5EA; &#x5DE;&#x5E1;&#x5DA; &#x5DE;&#x5D2;&#x5E2;\" class=\"wp-image-551\" title=\"\" srcset=\"https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/touch-test.jpg 1000w, https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/touch-test-300x150.jpg 300w, https:\/\/cpstesters.com\/wp-content\/uploads\/2022\/09\/touch-test-768x384.jpg 768w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><figcaption class=\"wp-element-caption\">\u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05de\u05d2\u05e2<\/figcaption><\/figure>\n<\/div>\n<p>\u05d6\u05d4 \u05de\u05d5\u05d3\u05d9\u05e2 \u05dc\u05da \u05e2\u05dc \u05d4\u05de\u05e1\u05e4\u05e8 \u05d4\u05de\u05e8\u05d1\u05d9 \u05e9\u05dc \u05d0\u05e6\u05d1\u05e2\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05e9\u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da \u05d9\u05db\u05d5\u05dc \u05dc\u05ea\u05de\u05d5\u05da \u05d1\u05d5. <\/p>\n\n<h2 class=\"wp-block-heading\">\u05de\u05d1\u05d7\u05df \u05e8\u05d1 \u05de\u05d2\u05e2<\/h2>\n\n<p>\u05d1\u05d5\u05d3\u05e7 Multi Touch \u05de\u05d6\u05d4\u05d4 \u05e0\u05d2\u05d9\u05e2\u05d5\u05ea \u05e8\u05d1\u05d5\u05ea \u05d5\u05e0\u05d5\u05ea\u05df \u05dc\u05db\u05dc \u05d0\u05d7\u05ea \u05d4\u05d3\u05d2\u05e9\u05d4 \u05e6\u05d1\u05e2\u05d5\u05e0\u05d9\u05ea \u05de\u05d5\u05d1\u05d4\u05e7\u05ea. \u05d6\u05d4 \u05dc\u05d0 \u05de\u05e9\u05e0\u05d4 \u05d0\u05dd \u05d4\u05d0\u05e6\u05d1\u05e2\u05d5\u05ea \u05e9\u05dc\u05da \u05de\u05db\u05e1\u05d5\u05ea \u05d0\u05ea \u05d4\u05d4\u05e7\u05e9\u05d5\u05ea \u05d5\u05d4\u05e1\u05e4\u05e8\u05d5\u05ea \u05e2\u05dc \u05d4\u05de\u05e1\u05da. \u05d2\u05dd \u05db\u05d0\u05e9\u05e8 \u05d0\u05ea\u05d4 \u05de\u05d5\u05e8\u05d9\u05d3 \u05d0\u05ea \u05d4\u05d0\u05e6\u05d1\u05e2\u05d5\u05ea \u05de\u05d4\u05de\u05e1\u05da, \u05d4\u05de\u05e1\u05e4\u05e8 \u05d4\u05de\u05e8\u05d1\u05d9 \u05e9\u05dc \u05e0\u05d2\u05d9\u05e2\u05d5\u05ea \u05d9\u05d5\u05e6\u05d2. \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d1\u05d3\u05d9\u05e7\u05d4 \u05d6\u05d5 \u05db\u05d3\u05d9 \u05dc\u05e8\u05d0\u05d5\u05ea \u05db\u05de\u05d4 \u05e0\u05d2\u05d9\u05e2\u05d5\u05ea \u05e8\u05d5\u05e9\u05dd \u05de\u05e1\u05da \u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da.<\/p>\n\n<p>\u05d1\u05d5\u05d3\u05e7 \u05d6\u05d4 \u05d9\u05e1\u05de\u05df \u05db\u05dc \u05d0\u05e6\u05d1\u05e2 \u05db\u05d0\u05e9\u05e8 \u05ea\u05e6\u05d9\u05d1 \u05d0\u05d5\u05ea\u05d4 \u05e2\u05dc \u05d4\u05de\u05e1\u05da \u05de\u05e1\u05e4\u05e8 \u05e4\u05e2\u05de\u05d9\u05dd \u05d1\u05d1\u05ea \u05d0\u05d7\u05ea. \u05d1\u05e0\u05d5\u05e1\u05e3, \u05d4\u05d5\u05d0 \u05d9\u05ea\u05e2\u05d3 \u05d0\u05ea \u05d4\u05de\u05e1\u05e4\u05e8 \u05d4\u05db\u05d5\u05dc\u05dc \u05e9\u05dc \u05d4\u05d0\u05e6\u05d1\u05e2\u05d5\u05ea \u05d4\u05de\u05d5\u05e7\u05dc\u05d8\u05d5\u05ea \u05e2\u05dc \u05d4\u05de\u05e1\u05da. \u05d4\u05ea\u05d5\u05db\u05e0\u05d9\u05ea \u05ea\u05de\u05e9\u05d9\u05da \u05dc\u05d6\u05db\u05d5\u05e8 \u05d0\u05ea \u05d4\u05de\u05e1\u05e4\u05e8 \u05d4\u05d2\u05d3\u05d5\u05dc \u05d1\u05d9\u05d5\u05ea\u05e8 \u05e9\u05d6\u05d9\u05d4\u05ea\u05d4 \u05d2\u05dd \u05dc\u05d0\u05d7\u05e8 \u05e9\u05ea\u05e9\u05d7\u05e8\u05e8 \u05d0\u05ea \u05d4\u05d0\u05e6\u05d1\u05e2\u05d5\u05ea.<\/p>\n\n<p>\u05e2\u05d3\u05d9\u05e3 \u05dc\u05d4\u05e4\u05d5\u05da \u05d0\u05ea \u05d4\u05d1\u05d3\u05d9\u05e7\u05d4 \u05dc\u05de\u05e1\u05da \u05de\u05dc\u05d0 \u05db\u05da \u05e9\u05db\u05dc \u05d4\u05e0\u05d2\u05d9\u05e2\u05d5\u05ea \u05d9\u05d5\u05db\u05dc\u05d5 \u05dc\u05d4\u05d9\u05db\u05e0\u05e1 \u05dc\u05e9\u05d3\u05d4 \u05d4\u05d1\u05d3\u05d9\u05e7\u05d4. \u05dc\u05d7\u05e5 \u05e2\u05dc \u05d4\u05db\u05e4\u05ea\u05d5\u05e8 \u05d1\u05e4\u05d9\u05e0\u05d4 \u05d4\u05e9\u05de\u05d0\u05dc\u05d9\u05ea \u05d4\u05ea\u05d7\u05ea\u05d5\u05e0\u05d4 \u05db\u05d3\u05d9 \u05dc\u05e2\u05e9\u05d5\u05ea \u05d6\u05d0\u05ea.<\/p>\n\n<p>\u05d0\u05d9\u05df \u05e6\u05d5\u05e8\u05da \u05dc\u05d4\u05ea\u05e7\u05d9\u05df \u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05db\u05dc\u05e9\u05d4\u05df \u05e2\u05d1\u05d5\u05e8 \u05d1\u05d3\u05d9\u05e7\u05d4 \u05d6\u05d5, \u05db\u05d9 \u05d0\u05ea\u05d4 \u05ea\u05de\u05d9\u05d3 \u05d9\u05db\u05d5\u05dc \u05dc\u05d1\u05e6\u05e2 \u05d0\u05ea \u05de\u05d1\u05d7\u05df \u05d1\u05d5\u05d3\u05e7 \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc\u05e0\u05d5 \u05d1\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da \u05d1\u05d0\u05d5\u05e4\u05df \u05de\u05e7\u05d5\u05d5\u05df \u05de\u05d4\u05d0\u05ea\u05e8 \u05e9\u05dc\u05e0\u05d5.<\/p>\n\n<p class=\"has-text-align-center has-base-background-color has-background has-medium-font-size\"><em>\u05d9\u05e9 \u05dc\u05e0\u05d5 \u05d2\u05dd <a href=\"https:\/\/cpstesters.com\/he\/dead-pixel-test\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05d1\u05d3\u05d9\u05e7\u05ea \u05e4\u05d9\u05e7\u05e1\u05dc\u05d9\u05dd \u05de\u05ea\u05d9\u05dd<\/a> \u05dc\u05de\u05e1\u05da \u05e9\u05dc\u05da, \u05d1\u05d3\u05d5\u05e7!<\/em><\/p>\n\n<h2 class=\"wp-block-heading has-text-align-center\">\u05e9\u05d0\u05dc\u05d5\u05ea \u05e0\u05e4\u05d5\u05e6\u05d5\u05ea<\/h2>\n\n<h3 class=\"wp-block-heading\"><strong>\u05db\u05d9\u05e6\u05d3 \u05d0\u05d5\u05db\u05dc \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc\u05d9?<\/strong><\/h3>\n\n<p>\u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d1\u05d7\u05df \u05d4\u05de\u05d2\u05e2 \u05d1\u05d0\u05ea\u05e8 \u05e9\u05dc\u05e0\u05d5 \u05db\u05d3\u05d9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc \u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da \u05d0\u05dd \u05d0\u05ea\u05d4 \u05e1\u05d1\u05d5\u05e8 \u05e9\u05d4\u05d5\u05d0 \u05d0\u05d9\u05e0\u05d5 \u05e4\u05d5\u05e2\u05dc \u05db\u05e8\u05d0\u05d5\u05d9. \u05d1\u05d3\u05d9\u05e7\u05d4 \u05d6\u05d5 \u05de\u05d0\u05e4\u05e9\u05e8\u05ea \u05dc\u05da \u05dc\u05d6\u05d4\u05d5\u05ea \u05d5\u05dc\u05d8\u05e4\u05dc \u05d1\u05d1\u05e2\u05d9\u05d5\u05ea \u05e4\u05d5\u05d8\u05e0\u05e6\u05d9\u05d0\u05dc\u05d9\u05d5\u05ea \u05e2\u05dd \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc\u05da, \u05e9\u05db\u05dc \u05d0\u05d7\u05ea \u05de\u05d4\u05df \u05de\u05d8\u05d5\u05e4\u05dc\u05ea \u05d1\u05e6\u05d5\u05e8\u05d4 \u05e9\u05d5\u05e0\u05d4.<\/p>\n\n<h3 class=\"wp-block-heading\"><strong>\u05d0\u05d9\u05da \u05d0\u05e0\u05d9 \u05d9\u05d5\u05d3\u05e2 \u05d0\u05dd \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05e9\u05dc\u05d9 \u05e8\u05d2\u05d9\u05e9?<\/strong><\/h3>\n\n<p>\u05e0\u05d9\u05ea\u05df \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05e8\u05d2\u05d9\u05e9\u05d5\u05ea \u05de\u05e1\u05da \u05d4\u05de\u05d2\u05e2 \u05d1\u05dc\u05d7\u05d9\u05e6\u05d5\u05ea \u05d0\u05e6\u05d1\u05e2 \u05e9\u05d5\u05e0\u05d5\u05ea. \u05de\u05e1\u05db\u05d9\u05dd \u05de\u05e1\u05d5\u05d9\u05de\u05d9\u05dd \u05d3\u05d5\u05e8\u05e9\u05d9\u05dd \u05de\u05d2\u05e2 \u05e8\u05d1 \u05d9\u05d5\u05ea\u05e8 \u05d1\u05de\u05e1\u05da \u05de\u05db\u05d9\u05d5\u05d5\u05df \u05e9\u05d4\u05dd \u05de\u05ea\u05e7\u05e9\u05d9\u05dd \u05dc\u05e7\u05e8\u05d5\u05d0 \u05e0\u05d2\u05d9\u05e2\u05d5\u05ea \u05e7\u05dc\u05d5\u05ea.<\/p>\n\n<h3 class=\"wp-block-heading\"><strong>\u05d0\u05d9\u05da \u05d1\u05d5\u05d3\u05e7\u05d9\u05dd \u05de\u05d2\u05e2 \u05e8\u05e4\u05d0\u05d9\u05dd?<\/strong><\/h3>\n\n<p>\u05d4\u05ea\u05d7\u05dc \u05d1\u05e0\u05d9\u05e1\u05d5\u05d9 \u05e2\u05dd \u05e2\u05e6\u05de\u05da \u05db\u05d3\u05d9 \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05dd \u05d0\u05ea\u05d4 \u05d9\u05db\u05d5\u05dc \u05dc\u05d6\u05d4\u05d5\u05ea \u05d0\u05ea \u05d4\u05d1\u05e2\u05d9\u05d4. \u05d0\u05d6 \u05ea\u05e2\u05e9\u05d4 \u05e9\u05dc\u05d5\u05e9 \u05d0\u05e6\u05d1\u05e2\u05d5\u05ea. \u05dc\u05d0\u05d7\u05e8 \u05de\u05db\u05df, \u05ea\u05d6\u05d4\u05d4 \u05e0\u05d2\u05d9\u05e2\u05ea \u05e8\u05e4\u05d0\u05d9\u05dd \u05d0\u05d7\u05ea \u05d0\u05d5 \u05e9\u05ea\u05d9\u05d9\u05dd \u05d0\u05dd \u05ea\u05d9\u05d2\u05e2 \u05d1\u05d8\u05e2\u05d5\u05ea \u05d1\u05ea\u05e6\u05d5\u05d2\u05d4 \u05e9\u05dc\u05da \u05e2\u05dd \u05d0\u05d7\u05ea \u05d0\u05d5 \u05e9\u05ea\u05d9 \u05d4\u05d0\u05e6\u05d1\u05e2\u05d5\u05ea.<\/p>\n\n<p>\u05d1\u05d3\u05d9\u05e7\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d5\u05ea \u05e9\u05d0\u05d5\u05dc\u05d9 \u05ea\u05e8\u05e6\u05d5 \u05dc\u05d1\u05d3\u05d5\u05e7:<\/p>\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/cpstesters.com\/he\/%d7%94%d7%a7%d7%a9-%d7%9b%d7%93%d7%99-%d7%9c%d7%a1%d7%a4%d7%95%d7%a8-%d7%90%d7%aa-%d7%94%d7%9e%d7%92%d7%a2-%d7%95%d7%94%d7%94%d7%a7%d7%a9\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05d4\u05e7\u05e9 \u05e2\u05dc \u05de\u05d5\u05e0\u05d4<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/tap-speed-test\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05d4\u05e7\u05e9 \u05e2\u05dc \u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05d4\u05d9\u05e8\u05d5\u05ea<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05dc\u05d7\u05e5 \u05e2\u05dc \u05d1\u05d5\u05d7\u05df \u05dc\u05e9\u05e0\u05d9\u05d9\u05d4<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/%d7%9e%d7%91%d7%97%d7%9f-%d7%9e%d7%a7%d7%9c%d7%93%d7%aa\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05d1\u05d5\u05d3\u05e7 \u05de\u05e7\u05dc\u05d3\u05ea<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/cpstesters.com\/he\/%d7%91%d7%93%d7%99%d7%a7%d7%aa-%d7%90%d7%97%d7%96%d7%95%d7%a8-%d7%9e%d7%a7%d7%9c%d7%93%d7%aa\/\" target=\"_blank\" rel=\"noreferrer noopener\">\u05d1\u05d3\u05d9\u05e7\u05ea \u05d0\u05d7\u05d6\u05d5\u05e8 \u05de\u05e7\u05dc\u05d3\u05ea<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>\u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05dc\u05e0\u05d9\u05d9\u05d3 \u05d5\u05dc\u05de\u05d7\u05e9\u05d1 \u05e0\u05d9\u05d9\u05d3 \u05d4\u05d5\u05d0 \u05db\u05dc\u05d9 \u05dc\u05d1\u05d3\u05d5\u05e7 \u05d0\u05dd \u05de\u05d2\u05e2 \u05d4\u05de\u05db\u05e9\u05d9\u05e8 \u05e9\u05dc\u05da \u05e4\u05d5\u05e2\u05dc \u05db\u05e8\u05d0\u05d5\u05d9 \u05d0\u05d5 \u05dc\u05d0, \u05d1\u05d3\u05d5\u05e7 \u05d0\u05ea \u05d6\u05d4 \u05e2\u05db\u05e9\u05d9\u05d5! \u05d1\u05d5\u05d3\u05e7 \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05d1\u05d3\u05d9\u05e7\u05ea &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"\u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05d1\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 | \u05d1\u05d5\u05d3\u05e7 \u05e8\u05d1 \u05de\u05d2\u05e2\" class=\"read-more button\" href=\"https:\/\/cpstesters.com\/he\/touch-screen-test\/#more-2843\" aria-label=\"Read more about \u05d1\u05d3\u05d9\u05e7\u05ea \u05de\u05e1\u05da \u05de\u05d2\u05e2 \u05d1\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 | \u05d1\u05d5\u05d3\u05e7 \u05e8\u05d1 \u05de\u05d2\u05e2\">Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":1473,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-2843","page","type-page","status-publish","has-post-thumbnail"],"_links":{"self":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages\/2843","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/comments?post=2843"}],"version-history":[{"count":5,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages\/2843\/revisions"}],"predecessor-version":[{"id":5942,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/pages\/2843\/revisions\/5942"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/media\/1473"}],"wp:attachment":[{"href":"https:\/\/cpstesters.com\/he\/wp-json\/wp\/v2\/media?parent=2843"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}