{"id":12817,"date":"2017-07-22T18:17:04","date_gmt":"2017-07-22T15:17:04","guid":{"rendered":"https:\/\/inten.ua\/?page_id=12817"},"modified":"2024-01-26T19:31:43","modified_gmt":"2024-01-26T17:31:43","slug":"raduga-en-pro","status":"publish","type":"page","link":"https:\/\/inten.ua\/ru\/raduga-en-pro\/","title":{"rendered":"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en)"},"content":{"rendered":"<div class=\"et_d4_element et_pb_section et_pb_section_0  et_pb_css_mix_blend_mode et_pb_fullwidth_section et_section_regular et_block_section\" >\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_module et_d4_element et_pb_fullwidth_code et_pb_fullwidth_code_0\">\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"et_pb_code_inner\"><script type=\"text\/javascript\">\n\n\/**\n *\n * \u0418\u0433\u0440\u0430 \"\u0420\u0430\u0434\u0443\u0433\u0430\" \u041d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f\n * \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430: http:\/\/webExperts.pro\n * \u0412\u0435\u0440\u0441\u0438\u044f 1.1\n *\n **\/\n\n\nvar delay = 1500;\nvar chopProb = 0.2;\nvar jumpProb = 0.1;\n\nvar colors = ['#F44336', '#00a651', '#fee14c', '#F9A828', '#C264FE', '#93B4F5', '#F44336', '#93B4F5'];\nvar colorNames = ['RED', 'GREEN', 'YELLOW', 'ORANGE', 'VIOLET', 'BLUE', 'BLACK', 'BROWN'];\n\nfunction nextColor ()\n{\n\tvar wg = document.getElementById('workGround');\n\twg.style.visibility = 'hidden';\n\tvar sh = document.getElementById('settings').clientHeight;\n\tif (sh < 120) sh = 126;\n\tvar dw = document.documentElement.clientWidth;\n\tvar dh = document.documentElement.clientHeight - sh;\n\tif (dh < 50) dh = document.body.clientHeight;\n\tvar cnum = Math.floor(Math.random()*colors.length);\n\tvar otherAction = Math.random() * chopProb > Math.random() * jumpProb ? 'CLAP' : 'JUMP';\n\tvar bnum = Math.random() > 0.7 ? cnum : Math.floor(Math.random()*colors.length);\n\twg.innerHTML = Math.random() > chopProb + jumpProb ? colorNames[cnum] : otherAction;\n\tvar bh = wg.clientHeight;\n\tvar bw = wg.clientWidth;\n\twg.style.left = Math.floor(Math.random() * (dw - bw)) + 'px';\n\twg.style.top = Math.floor(Math.random() * (dh - bh)) + sh - 80 + 'px';\n\twg.style.backgroundColor = colors[bnum];\n\twg.style.visibility = 'visible';       \n\tsetTimeout(nextColor, delay);\n}\n\nfunction setDelay()\n{\n\tvar inp = document.getElementById('delayInput');\n\tvar n = Number(inp.value);\n\tif (isNaN(n) || n < 1 || n > 5000)\n\t{\n\t\talert('Incorrect value: ' + inp.value + 'n Enter 0-5000');\n\t\tinp.value = delay;\n\t}\n\telse delay = n;\n}\n\nfunction setChop()\n{\n\tvar inp = document.getElementById('chopInput');\n\tvar n = Number(inp.value);\n\tif (isNaN(n) || n < 0 || n > 100)\n\t{\n\t\talert('Incorrect value: ' + inp.value + 'n Enter 0-100');\n\t\tinp.value = chopProb*100;\n\t}\n\telse if (n + (jumpProb * 100) > 100)\n\t{\n\t\talert('Incorrect value. The sum of claps and jumps should not exceed 100%. Now max chance for claps is ' + (100 - (jumpProb * 100)) + '%');\n\t\tinp.value = 100 - (jumpProb * 100);\n\t\tchopProb = inp.value \/ 100;\n\t}\n\telse chopProb = n\/100;\n}\n\nfunction setJump()\n{\n\tvar inp = document.getElementById('jumpInput');\n\tvar n = Number(inp.value);\n\tif (isNaN(n) || n < 0 || n > 100)\n\t{\n\t\talert('Incorrect value: ' + inp.value + 'n Enter 0-100');\n\t\tinp.value = jumpProb*100;\n\t}\n\telse if (n + (chopProb * 100) > 100)\n\t{\n\t\talert('Incorrect value. The sum of claps and jumps should not exceed 100%. Now max chance for jumps is ' + (100 - (chopProb * 100)) + '%');\n\t\tinp.value = 100 - (chopProb * 100);\n\t\tjumpProb = inp.value \/ 100;\n\t}\n\telse jumpProb = n\/100;\n}\n\n\nfunction press(e) {\n\tswitch (e.keyCode) {\n\t\tcase 37: case 38: case 33:\n\t\t\tif (delay<300) return;\n\t\t\tdelay -= 50;\n\t\t\tbreak;\n\t\tcase 40: case 39: case 34:\n\t\t\tif (delay>9949) return;\n\t\t\tdelay += 50;\n\t\t\tbreak;\n\t}\n\t\/\/ document.getElementById('delayInput').value = delay;\n}\n\ndocument.addEventListener('DOMContentLoaded', function () {\n    nextColor();\n    window.onkeypress = press;\n});\n\n<\/script>\n\n<div id=\"settings\">\n  <div class=\"left-settings\"> <label>  Interval (ms)\n    <input id=\"delayInput\" value=\"1500\" size=\"4\" maxlength=\"4\" type=\"text\"><\/label>\n    <button onclick=\"setDelay()\" title=\"Set interval in milliseconds\">Apply<\/button>\n  <\/div>\n\n <div class=\"right-settings\"> <label> Claps (%) \n\t<input id=\"chopInput\" value=\"20\" size=\"3\" maxlength=\"3\" type=\"text\"><\/label>\n   \t<button onclick=\"setChop()\" title=\"Set chance of claps in %\">Apply<\/button>\n  <\/div>\n\n   <div class=\"right-settings\"> <label> Jumps (%) \n\t<input id=\"jumpInput\" value=\"10\" size=\"3\" maxlength=\"3\" type=\"text\"><\/label>\n   \t<button onclick=\"setJump()\" title=\"Set chance of jumps in %\">Apply<\/button>\n  <\/div>\n\n<\/div>\n\n<div style=\"visibility: visible; left: 463px; top: 406px; background-color: lightgrey;\" id=\"workGround\" class=\"word-block\">CLAP<\/div>\n<!-- body end scripts -->\n  <script src=\"https:\/\/cdn.jsdelivr.net\/jquery\/2.2.4\/jquery.min.js\"><\/script>\n  <script src=\"https:\/\/cdn.jsdelivr.net\/g\/sweetalert2@6.3.2,spinjs@2.3.2,bootstrap@3.3.7\"><\/script>\n  <script src=\"https:\/\/unpkg.com\/simple-ui-builder\"><\/script>\n  <script src=\"https:\/\/unpkg.com\/artbels-js-tools\"><\/script><\/div>\n\t\t\t<\/div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t<\/div>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_et_pb_use_builder":"on","_et_pb_old_content":"","_et_gb_content_width":"","footnotes":""},"class_list":["post-12817","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en) - Inten<\/title>\n<meta name=\"description\" content=\"\u0418\u0433\u0440\u044b \u043d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f &quot;\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e&quot; \u043f\u043e\u043c\u043e\u0433\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0447\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/inten.ua\/ru\/raduga-en-pro\/\" \/>\n<meta property=\"og:locale\" content=\"ru_RU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en) - Inten\" \/>\n<meta property=\"og:description\" content=\"\u0418\u0433\u0440\u044b \u043d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f &quot;\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e&quot; \u043f\u043e\u043c\u043e\u0433\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0447\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/inten.ua\/ru\/raduga-en-pro\/\" \/>\n<meta property=\"og:site_name\" content=\"Inten\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-26T17:31:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/inten.ua\\\/ru\\\/raduga-en-pro\\\/\",\"url\":\"https:\\\/\\\/inten.ua\\\/ru\\\/raduga-en-pro\\\/\",\"name\":\"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en) - Inten\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/inten.ua\\\/ru\\\/#website\"},\"datePublished\":\"2017-07-22T15:17:04+00:00\",\"dateModified\":\"2024-01-26T17:31:43+00:00\",\"description\":\"\u0418\u0433\u0440\u044b \u043d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f \\\"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e\\\" \u043f\u043e\u043c\u043e\u0433\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0447\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/inten.ua\\\/ru\\\/raduga-en-pro\\\/#breadcrumb\"},\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/inten.ua\\\/ru\\\/raduga-en-pro\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/inten.ua\\\/ru\\\/raduga-en-pro\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\",\"item\":\"https:\\\/\\\/inten.ua\\\/ru\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/inten.ua\\\/ru\\\/#website\",\"url\":\"https:\\\/\\\/inten.ua\\\/ru\\\/\",\"name\":\"Inten\",\"description\":\"\u0428\u0432\u0438\u0434\u043a\u043e\u0447\u0438\u0442\u0430\u043d\u043d\u044f, \u0448\u0432\u0438\u0434\u043a\u0435 \u043c\u0438\u0441\u043b\u0435\u043d\u043d\u044f, \u043c\u0435\u0433\u0430\u043f\u0430\u043c&#039;\u044f\u0442\u044c\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/inten.ua\\\/ru\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ru-RU\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en) - Inten","description":"\u0418\u0433\u0440\u044b \u043d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f \"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e\" \u043f\u043e\u043c\u043e\u0433\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0447\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e.","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:\/\/inten.ua\/ru\/raduga-en-pro\/","og_locale":"ru_RU","og_type":"article","og_title":"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en) - Inten","og_description":"\u0418\u0433\u0440\u044b \u043d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f \"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e\" \u043f\u043e\u043c\u043e\u0433\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0447\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e.","og_url":"https:\/\/inten.ua\/ru\/raduga-en-pro\/","og_site_name":"Inten","article_modified_time":"2024-01-26T17:31:43+00:00","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/inten.ua\/ru\/raduga-en-pro\/","url":"https:\/\/inten.ua\/ru\/raduga-en-pro\/","name":"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en) - Inten","isPartOf":{"@id":"https:\/\/inten.ua\/ru\/#website"},"datePublished":"2017-07-22T15:17:04+00:00","dateModified":"2024-01-26T17:31:43+00:00","description":"\u0418\u0433\u0440\u044b \u043d\u043e\u0432\u043e\u0433\u043e \u043a\u043e\u0434\u0430 \u041d\u041b\u041f \"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e\" \u043f\u043e\u043c\u043e\u0433\u0435\u0442 \u0430\u043a\u0442\u0438\u0432\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0435 \u043c\u044b\u0448\u043b\u0435\u043d\u0438\u0435 \u0438 \u043d\u0430\u0447\u0430\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e \u0438 \u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e.","breadcrumb":{"@id":"https:\/\/inten.ua\/ru\/raduga-en-pro\/#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/inten.ua\/ru\/raduga-en-pro\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/inten.ua\/ru\/raduga-en-pro\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","item":"https:\/\/inten.ua\/ru\/"},{"@type":"ListItem","position":2,"name":"\u0420\u0430\u0434\u0443\u0433\u0430 \u041f\u0420\u041e (en)"}]},{"@type":"WebSite","@id":"https:\/\/inten.ua\/ru\/#website","url":"https:\/\/inten.ua\/ru\/","name":"Inten","description":"\u0428\u0432\u0438\u0434\u043a\u043e\u0447\u0438\u0442\u0430\u043d\u043d\u044f, \u0448\u0432\u0438\u0434\u043a\u0435 \u043c\u0438\u0441\u043b\u0435\u043d\u043d\u044f, \u043c\u0435\u0433\u0430\u043f\u0430\u043c&#039;\u044f\u0442\u044c","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/inten.ua\/ru\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ru-RU"}]}},"_links":{"self":[{"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/pages\/12817","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/comments?post=12817"}],"version-history":[{"count":5,"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/pages\/12817\/revisions"}],"predecessor-version":[{"id":35855,"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/pages\/12817\/revisions\/35855"}],"wp:attachment":[{"href":"https:\/\/inten.ua\/ru\/wp-json\/wp\/v2\/media?parent=12817"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}