{"id":719,"date":"2025-06-24T07:22:15","date_gmt":"2025-06-24T07:22:15","guid":{"rendered":"https:\/\/nobel.websitesunum.com.tr\/?page_id=719"},"modified":"2025-07-09T07:53:04","modified_gmt":"2025-07-09T07:53:04","slug":"fuarlar-yeni","status":"publish","type":"page","link":"https:\/\/nobelexpo.com\/zh-cn\/fuarlar-yeni\/","title":{"rendered":"\u5c55\u89c8\u4f1a"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><div class=\"vc_row wpb_row vc_row-fluid\"><div class=\"wpb_column vc_column_container vc_col-sm-12\"><div class=\"vc_column-inner\"><div class=\"wpb_wrapper\">\n\t<div class=\"wpb_raw_code wpb_raw_js\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<script>\r\ndocument.addEventListener('DOMContentLoaded', () => {\r\n  document.querySelectorAll('.mobilartic .takvimbtn').forEach(btn => {\r\n    btn.addEventListener('click', e => {\r\n      e.preventDefault();\r\n      \/\/ Var olan dropdown\u2019lar\u0131 temizle\r\n      document.querySelectorAll('.takvim-dropdown').forEach(d => d.remove());\r\n\r\n      \/\/ Butonun ait oldu\u011fu article\r\n      const art = btn.closest('.mobilartic');\r\n      if (!art) return;\r\n\r\n      \/\/ Data-attribute\u2019lar\r\n      const title    = encodeURIComponent( art.getAttribute('data-title')    || '' );\r\n      const startRaw = art.getAttribute('data-start')    || '';\r\n      const endRaw   = art.getAttribute('data-end')      || '';\r\n      const location = encodeURIComponent( art.getAttribute('data-location') || '' );\r\n\r\n      \/\/ Tarih format d\u00f6n\u00fc\u015f\u00fcm\u00fc: \"YYYY-MM-DDTHH:MM:SS\" \u2192 \"YYYYMMDDTHHMMSS\"\r\n      const toICSDate = s => s.replace(\/[-:]\/g,'').split('.')[0];\r\n\r\n      \/\/ ICS i\u00e7eri\u011fi\r\n      const icsLines = [\r\n        'BEGIN:VCALENDAR',\r\n        'VERSION:2.0',\r\n        'BEGIN:VEVENT',\r\n        `UID:${Date.now()}@yourdomain.com`,\r\n        `DTSTAMP:${ toICSDate(new Date().toISOString()) }Z`,\r\n        `DTSTART:${ toICSDate(startRaw) }`,\r\n        `DTEND:${   toICSDate(endRaw)   }`,\r\n        `SUMMARY:${ decodeURIComponent(title) }`,\r\n        `LOCATION:${ decodeURIComponent(location) }`,\r\n        'END:VEVENT',\r\n        'END:VCALENDAR'\r\n      ].join('\\r\\n');\r\n      const blob = new Blob([icsLines], { type: 'text\/calendar' });\r\n\r\n      \/\/ Dropdown men\u00fc olu\u015ftur\r\n      const menu = document.createElement('div');\r\n      menu.className = 'takvim-dropdown';\r\n      menu.style.cssText = `\r\n        position:absolute;\r\n        background:#333;\r\n        border-radius:4px;\r\n        padding:8px 0;\r\n        z-index:9999;\r\n      `;\r\n      ['iCalendar','Google Calendar','Outlook','Outlook Online','Yahoo! Calendar']\r\n        .forEach(service => {\r\n          const a = document.createElement('a');\r\n          a.href = '#';\r\n          a.textContent = service;\r\n          a.dataset.action = service.toLowerCase().replace(\/ \/g,'').replace('!','');\r\n          a.style.cssText = `\r\n            display:block;\r\n            color:#fff;\r\n            padding:6px 16px;\r\n            text-decoration:none;\r\n          `;\r\n          menu.appendChild(a);\r\n      });\r\n      document.body.append(menu);\r\n\r\n      \/\/ Konumland\u0131r\r\n      const rect = btn.getBoundingClientRect();\r\n      menu.style.top  = (rect.bottom + window.scrollY) + 'px';\r\n      menu.style.left = (rect.left   + window.scrollX) + 'px';\r\n\r\n      \/\/ T\u0131klama y\u00f6netimi\r\n      menu.addEventListener('click', ev => {\r\n        ev.preventDefault();\r\n        const action = ev.target.dataset.action;\r\n        if (!action) return;\r\n\r\n        switch(action) {\r\n          case 'icalendar':\r\n            \/\/ .ics indir\r\n            const url = URL.createObjectURL(blob);\r\n            const dl  = document.createElement('a');\r\n            dl.href = url;\r\n            dl.download = 'event.ics';\r\n            dl.click();\r\n            URL.revokeObjectURL(url);\r\n            break;\r\n          case 'googlecalendar':\r\n            window.open(\r\n              `https:\/\/calendar.google.com\/calendar\/r\/eventedit` +\r\n              `?text=${title}` +\r\n              `&dates=${ toICSDate(startRaw) }\/${ toICSDate(endRaw) }` +\r\n              `&location=${location}`,\r\n              '_blank'\r\n            );\r\n            break;\r\n          case 'outlook':\r\n            \/\/ indir .ics \u2192 masa\u00fcst\u00fc Outlook\r\n            window.location.href = URL.createObjectURL(blob);\r\n            break;\r\n          case 'outlookonline':\r\n            window.open(\r\n              `https:\/\/outlook.office.com\/calendar\/0\/deeplink\/compose` +\r\n              `?subject=${title}` +\r\n              `&startdt=${startRaw}` +\r\n              `&enddt=${endRaw}` +\r\n              `&location=${location}`,\r\n              '_blank'\r\n            );\r\n            break;\r\n          case 'yahoocalendar':\r\n            window.open(\r\n              `https:\/\/calendar.yahoo.com\/?v=60&title=${title}` +\r\n              `&st=${ toICSDate(startRaw) }` +\r\n              `&et=${ toICSDate(endRaw) }` +\r\n              `&in_loc=${location}`,\r\n              '_blank'\r\n            );\r\n            break;\r\n        }\r\n        menu.remove();\r\n      });\r\n\r\n      \/\/ D\u0131\u015far\u0131 t\u0131klay\u0131nca kapat\r\n      document.addEventListener('click', function outside(ev) {\r\n        if (!menu.contains(ev.target) && ev.target !== btn) {\r\n          menu.remove();\r\n          document.removeEventListener('click', outside);\r\n        }\r\n      });\r\n    });\r\n  });\r\n});\r\n<\/script>\r\n\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-719","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Fuarlar - Nobel Expo<\/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:\/\/nobelexpo.com\/zh-cn\/fuarlar-yeni\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Fuarlar - Nobel Expo\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nobelexpo.com\/zh-cn\/fuarlar-yeni\/\" \/>\n<meta property=\"og:site_name\" content=\"Nobel Expo\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-09T07:53:04+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/nobelexpo.com\/fuarlar-yeni\/\",\"url\":\"https:\/\/nobelexpo.com\/fuarlar-yeni\/\",\"name\":\"Fuarlar - Nobel Expo\",\"isPartOf\":{\"@id\":\"https:\/\/nobelexpo.com\/#website\"},\"datePublished\":\"2025-06-24T07:22:15+00:00\",\"dateModified\":\"2025-07-09T07:53:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/nobelexpo.com\/fuarlar-yeni\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/nobelexpo.com\/fuarlar-yeni\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/nobelexpo.com\/fuarlar-yeni\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Anasayfa\",\"item\":\"https:\/\/nobelexpo.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Fuarlar\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/nobelexpo.com\/#website\",\"url\":\"https:\/\/nobelexpo.com\/\",\"name\":\"Nobel Expo\",\"description\":\"Gelece\u011fin Fuarlar\u0131na \u015eimdi Kat\u0131l\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/nobelexpo.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Fuarlar - Nobel Expo","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:\/\/nobelexpo.com\/zh-cn\/fuarlar-yeni\/","og_locale":"zh_CN","og_type":"article","og_title":"Fuarlar - Nobel Expo","og_url":"https:\/\/nobelexpo.com\/zh-cn\/fuarlar-yeni\/","og_site_name":"Nobel Expo","article_modified_time":"2025-07-09T07:53:04+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"3 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/nobelexpo.com\/fuarlar-yeni\/","url":"https:\/\/nobelexpo.com\/fuarlar-yeni\/","name":"Fuarlar - Nobel Expo","isPartOf":{"@id":"https:\/\/nobelexpo.com\/#website"},"datePublished":"2025-06-24T07:22:15+00:00","dateModified":"2025-07-09T07:53:04+00:00","breadcrumb":{"@id":"https:\/\/nobelexpo.com\/fuarlar-yeni\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nobelexpo.com\/fuarlar-yeni\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nobelexpo.com\/fuarlar-yeni\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Anasayfa","item":"https:\/\/nobelexpo.com\/"},{"@type":"ListItem","position":2,"name":"Fuarlar"}]},{"@type":"WebSite","@id":"https:\/\/nobelexpo.com\/#website","url":"https:\/\/nobelexpo.com\/","name":"\u8bfa\u8d1d\u5c14\u535a\u89c8\u4f1a","description":"\u73b0\u5728\u5c31\u52a0\u5165\u672a\u6765\u535a\u89c8\u4f1a","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nobelexpo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"}]}},"_links":{"self":[{"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/pages\/719","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/comments?post=719"}],"version-history":[{"count":0,"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/pages\/719\/revisions"}],"wp:attachment":[{"href":"https:\/\/nobelexpo.com\/zh-cn\/wp-json\/wp\/v2\/media?parent=719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}