{"id":198,"date":"2023-12-06T00:22:19","date_gmt":"2023-12-06T00:22:19","guid":{"rendered":"https:\/\/123.leheila.co.il\/?page_id=198"},"modified":"2023-12-06T00:56:41","modified_gmt":"2023-12-06T00:56:41","slug":"elementor-198","status":"publish","type":"page","link":"https:\/\/123.leheila.co.il\/?page_id=198","title":{"rendered":"Elementor #198"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"198\" class=\"elementor elementor-198\" data-elementor-post-type=\"page\">\n\t\t\t\t<div class=\"elementor-element elementor-element-2d2effa e-flex e-con-boxed e-con e-parent\" data-id=\"2d2effa\" data-element_type=\"container\" data-settings=\"{&quot;content_width&quot;:&quot;boxed&quot;}\" data-core-v316-plus=\"true\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e8c2b1d elementor-widget elementor-widget-html\" data-id=\"e8c2b1d\" data-element_type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/two.js\/0.8.12\/two.js\" integrity=\"sha512-YCeVDl\/kJ+VfflHOvCSK8HtmYvcdbnw\/3W6iA3K9Ni4aHVqds5ItbV4zXkTnH0QNVN3w3ijZ6BB4gDg6vKcM1Q==\" crossorigin=\"anonymous\" referrerpolicy=\"no-referrer\"><\/script>\n<script>\n\n\n\/\/ Initialize an instance to render\n\/\/ render to the screen. Try changing\n\/\/ the `type` property to:\n\/\/   Two.Types.canvas\n\/\/   Two.Types.webgl\n\/\/ To see different rendering styles.\nconst two = new Two({\n  type: Two.Types.svg,\n  fullscreen: false,\n  autostart: true\n}).appendTo(document.body);\n\n\/\/ Change the background\ntwo.renderer.domElement.style.background = '#000';\n\n\/\/ Create an array to keep track of the \n\/\/ the different characters which will be added.\nconst characters = [];\n\n\/\/ Set the gravity of the world.\n\/\/ Try changing the x and y components\n\/\/ to change the \"falling\" animation\nconst gravity = new Two.Vector(0, 0.80);\n\n\/\/ The font styles to apply to\n\/\/ all text in the scene.\nconst styles = {\n  family: 'Arial',\n  size: 50,\n  leading: 50,\n  weight: 900\n};\n\nconst isMobile = window.navigator.maxTouchPoints > 0;\nconst message = isMobile ? 'Tap Me' : 'Start Typing';\n\n\/\/ Create text that informs the user\n\/\/ on what they should do to interact\n\/\/ with this example.\nconst directions = two.makeText(message, two.width \/ 2, two.height \/ 2, styles);\ndirections.fill = 'white';\n\n\/\/ Add events to the page\nwindow.addEventListener('keydown', keydown, false);\nwindow.addEventListener('touchstart', touchstart, false);\n\n\/\/ Add callbacks to events that Two.js triggers.\ntwo.bind('resize', resize);\ntwo.bind('update', update);\n\n\/\/ Handle keydown event and add\n\/\/ the pressed letter to the scene.\nfunction keydown(e) {\n  const character = String.fromCharCode(e.which);\n  add(character);\n}\n\n\/\/ Handle touchstart event and\n\/\/ add a random letter to the scene.\n\n\n\nfunction touchstart(e) {\n  const r = Math.random();\n  if (r <= 0.5) {\n    \/\/ Generate Latin letter\n    const range = Math.floor(r * 26) + (r > 0.5 ? 97 : 65);\n    const character = String.fromCharCode(range);\n  } else {\n    \/\/ Generate Hebrew letter\n    const range = Math.floor((r - 0.5) * 32) + 0x590;\n    const character = String.fromCharCode(range);\n  }\n  add(character);\n}\n\n\n\/\/ Set the position of the directions\n\/\/ to the center of the page.\nfunction resize() {\n  directions.translation.set(two.width \/ 2, two.height \/ 2);\n}\n\n\/\/ An update callback that is called every time\n\/\/ the scene is rendered. Think of this as an\n\/\/ animation loop.\nfunction update() {\n\n  \/\/ Iterate through all letters in the `characters`\n  \/\/ array, apply gravity to their velocity, and\n  \/\/ update their respective position.\n  for (let i = 0; i < characters.length; i++) {\n\n    const text = characters[i];\n    \n    text.translation.addSelf(text.velocity);\n    text.rotation += text.velocity.r;\n    text.velocity.add(gravity);\n\n    \/\/ If the text's velocity is greater than 0\n    \/\/ and the position is off the page, then\n    \/\/ remove the text.\n    if (text.velocity.y > 0 && text.translation.y > two.height) {\n      two.scene.remove(text);\n      two.release(text);\n      characters.splice(i, 1);\n    }\n  }\n}\n\n\/\/ Utility function to add a `Two.Text`\n\/\/ instance to the scene, set its styles\n\/\/ and create a velocity and rotation\n\/\/ to be applied in the update callback.\nfunction add(msg) {\n\n  const x = (Math.random() * two.width) \/ 2 + two.width \/ 4;\n  const y = two.height * 1.25;\n\n  const text = two.makeText(msg, x, y, styles);\n  text.size *= 2;\n  text.fill = '#ae1176';\n\n  text.velocity = new Two.Vector();\n  text.velocity.x = 10 * (Math.random() - 0.5);\n  text.velocity.y = -(20 * Math.random() + 13);\n  text.velocity.r = (Math.random() * Math.PI) \/ 8;\n\n  characters.push(text);\n\n}\n\n<\/script>\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0d1c136 elementor-absolute elementor-button-align-stretch elementor-widget elementor-widget-form\" data-id=\"0d1c136\" data-element_type=\"widget\" data-settings=\"{&quot;step_next_label&quot;:&quot;\\u05d4\\u05d1\\u05d0&quot;,&quot;step_previous_label&quot;:&quot;\\u05d4\\u05e7\\u05d5\\u05d3\\u05dd&quot;,&quot;_position&quot;:&quot;absolute&quot;,&quot;button_width&quot;:&quot;100&quot;,&quot;step_type&quot;:&quot;number_text&quot;,&quot;step_icon_shape&quot;:&quot;circle&quot;}\" data-widget_type=\"form.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t<style>\/*! elementor-pro - v3.18.0 - 04-12-2023 *\/\n.elementor-button.elementor-hidden,.elementor-hidden{display:none}.e-form__step{width:100%}.e-form__step:not(.elementor-hidden){display:flex;flex-wrap:wrap}.e-form__buttons{flex-wrap:wrap}.e-form__buttons,.e-form__buttons__wrapper{display:flex}.e-form__indicators{display:flex;justify-content:space-between;align-items:center;flex-wrap:nowrap;font-size:13px;margin-bottom:var(--e-form-steps-indicators-spacing)}.e-form__indicators__indicator{display:flex;flex-direction:column;align-items:center;justify-content:center;flex-basis:0;padding:0 var(--e-form-steps-divider-gap)}.e-form__indicators__indicator__progress{width:100%;position:relative;background-color:var(--e-form-steps-indicator-progress-background-color);border-radius:var(--e-form-steps-indicator-progress-border-radius);overflow:hidden}.e-form__indicators__indicator__progress__meter{width:var(--e-form-steps-indicator-progress-meter-width,0);height:var(--e-form-steps-indicator-progress-height);line-height:var(--e-form-steps-indicator-progress-height);padding-right:15px;border-radius:var(--e-form-steps-indicator-progress-border-radius);background-color:var(--e-form-steps-indicator-progress-color);color:var(--e-form-steps-indicator-progress-meter-color);text-align:right;transition:width .1s linear}.e-form__indicators__indicator:first-child{padding-left:0}.e-form__indicators__indicator:last-child{padding-right:0}.e-form__indicators__indicator--state-inactive{color:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-inactive [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-inactive-secondary-color,#fff)}.e-form__indicators__indicator--state-inactive object,.e-form__indicators__indicator--state-inactive svg{fill:var(--e-form-steps-indicator-inactive-primary-color,#c2cbd2)}.e-form__indicators__indicator--state-active{color:var(--e-form-steps-indicator-active-primary-color,#39b54a);border-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-active-secondary-color,#fff)}.e-form__indicators__indicator--state-active object,.e-form__indicators__indicator--state-active svg{fill:var(--e-form-steps-indicator-active-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed{color:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator--state-completed [class*=indicator--shape-]:not(.e-form__indicators__indicator--shape-none){background-color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator__label{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a)}.e-form__indicators__indicator--state-completed .e-form__indicators__indicator--shape-none{color:var(--e-form-steps-indicator-completed-primary-color,#39b54a);background-color:initial}.e-form__indicators__indicator--state-completed object,.e-form__indicators__indicator--state-completed svg{fill:var(--e-form-steps-indicator-completed-secondary-color,#fff)}.e-form__indicators__indicator__icon{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);font-size:var(--e-form-steps-indicator-icon-size);border-width:1px;border-style:solid;display:flex;justify-content:center;align-items:center;overflow:hidden;margin-bottom:10px}.e-form__indicators__indicator__icon img,.e-form__indicators__indicator__icon object,.e-form__indicators__indicator__icon svg{width:var(--e-form-steps-indicator-icon-size);height:auto}.e-form__indicators__indicator__icon .e-font-icon-svg{height:1em}.e-form__indicators__indicator__number{width:var(--e-form-steps-indicator-padding,30px);height:var(--e-form-steps-indicator-padding,30px);border-width:1px;border-style:solid;display:flex;justify-content:center;align-items:center;margin-bottom:10px}.e-form__indicators__indicator--shape-circle{border-radius:50%}.e-form__indicators__indicator--shape-square{border-radius:0}.e-form__indicators__indicator--shape-rounded{border-radius:5px}.e-form__indicators__indicator--shape-none{border:0}.e-form__indicators__indicator__label{text-align:center}.e-form__indicators__indicator__separator{width:100%;height:var(--e-form-steps-divider-width);background-color:#babfc5}.e-form__indicators--type-icon,.e-form__indicators--type-icon_text,.e-form__indicators--type-number,.e-form__indicators--type-number_text{align-items:flex-start}.e-form__indicators--type-icon .e-form__indicators__indicator__separator,.e-form__indicators--type-icon_text .e-form__indicators__indicator__separator,.e-form__indicators--type-number .e-form__indicators__indicator__separator,.e-form__indicators--type-number_text .e-form__indicators__indicator__separator{margin-top:calc(var(--e-form-steps-indicator-padding, 30px) \/ 2 - var(--e-form-steps-divider-width, 1px) \/ 2)}.elementor-field-type-hidden{display:none}.elementor-field-type-html{display:inline-block}.elementor-field-type-tel input{direction:inherit}.elementor-login .elementor-lost-password,.elementor-login .elementor-remember-me{font-size:.85em}.elementor-field-type-recaptcha_v3 .elementor-field-label{display:none}.elementor-field-type-recaptcha_v3 .grecaptcha-badge{z-index:1}.elementor-button .elementor-form-spinner{order:3}.elementor-form .elementor-button>span{display:flex;justify-content:center;align-items:center}.elementor-form .elementor-button .elementor-button-text{white-space:normal;flex-grow:0}.elementor-form .elementor-button svg{height:auto}.elementor-form .elementor-button .e-font-icon-svg{height:1em}.elementor-select-wrapper .select-caret-down-wrapper{position:absolute;top:50%;transform:translateY(-50%);inset-inline-end:10px;pointer-events:none;font-size:11px}.elementor-select-wrapper .select-caret-down-wrapper svg{display:unset;width:1em;aspect-ratio:unset;fill:currentColor}.elementor-select-wrapper .select-caret-down-wrapper i{font-size:19px;line-height:2}.elementor-select-wrapper.remove-before:before{content:\"\"!important}<\/style>\t\t<form class=\"elementor-form\" method=\"post\" name=\"\u05d8\u05d5\u05e4\u05e1 \u05d7\u05d3\u05e9\">\n\t\t\t<input type=\"hidden\" name=\"post_id\" value=\"198\"\/>\n\t\t\t<input type=\"hidden\" name=\"form_id\" value=\"0d1c136\"\/>\n\t\t\t<input type=\"hidden\" name=\"referer_title\" value=\"\" \/>\n\n\t\t\t\n\t\t\t<div class=\"elementor-form-fields-wrapper elementor-labels-above\">\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-type-text elementor-field-group elementor-column elementor-field-group-name elementor-col-100\">\n\t\t\t\t\t\t\t\t\t\t\t\t<label for=\"form-field-name\" class=\"elementor-field-label\">\n\t\t\t\t\t\t\t\t\u05e9\u05dd\t\t\t\t\t\t\t<\/label>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<input size=\"1\" type=\"text\" name=\"form_fields[name]\" id=\"form-field-name\" class=\"elementor-field elementor-size-sm  elementor-field-textual\" placeholder=\"\u05e9\u05dd\">\n\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\t\t\t<div class=\"elementor-field-group elementor-column elementor-field-type-submit elementor-col-100 e-form__buttons\">\n\t\t\t\t\t<button type=\"submit\" class=\"elementor-button elementor-size-sm\">\n\t\t\t\t\t\t<span >\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\" elementor-button-icon\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">\u05e9\u05dc\u05d9\u05d7\u05d4<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/button>\n\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_canvas","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"","ast-site-content-layout":"full-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-198","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=\/wp\/v2\/pages\/198","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=198"}],"version-history":[{"count":37,"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=\/wp\/v2\/pages\/198\/revisions"}],"predecessor-version":[{"id":238,"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=\/wp\/v2\/pages\/198\/revisions\/238"}],"wp:attachment":[{"href":"https:\/\/123.leheila.co.il\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=198"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}