{"id":1729,"date":"2026-04-22T16:58:41","date_gmt":"2026-04-22T16:58:41","guid":{"rendered":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/?page_id=1729"},"modified":"2026-04-22T20:29:14","modified_gmt":"2026-04-22T20:29:14","slug":"doolhof-telefoon","status":"publish","type":"page","link":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/","title":{"rendered":"Doolhof"},"content":{"rendered":"\n<div id=\"mazeWrap-ub01\">\n  <div class=\"maze-topbar\">\n    <div class=\"maze-timer\">\n      \u23f1\ufe0f <span id=\"mazeTime\">01:00<\/span>\n      <span id=\"mazeStatus\">\u2022 Raak het doolhof aan om te starten<\/span>\n    <\/div>\n    <div class=\"maze-buttons\">\n      <button id=\"mazeRestart\">Herstarten 1:00<\/button>\n      <button id=\"mazeClear\">Wis spoor<\/button>\n    <\/div>\n  <\/div>\n\n  <div class=\"maze-stage\" id=\"mazeStage\">\n    <img decoding=\"async\"\n      src=\"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/wp-content\/uploads\/2026\/01\/Bureaucratische-doolhof.png\"\n      alt=\"Maze\"\n      class=\"maze-img\"\n    \/>\n    <canvas id=\"mazeCanvas\"><\/canvas>\n  <\/div>\n\n  <div class=\"maze-back-wrap\">\n    <a\n      class=\"maze-back-link\"\n      href=\"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/\"\n    >\n      \u2190 Terug naar vorige pagina\n    <\/a>\n  <\/div>\n<\/div>\n\n<style>\n#mazeWrap-ub01{\n  max-width:1100px;\n  margin:16px auto;\n  font-family:system-ui;\n  padding:0 10px;\n  box-sizing:border-box;\n}\n\n.maze-topbar{\n  display:flex;\n  justify-content:space-between;\n  gap:10px;\n  margin-bottom:10px;\n  flex-wrap:wrap;\n}\n\n.maze-timer{\n  font-size:18px;\n  font-weight:700;\n  line-height:1.3;\n}\n\n.maze-stage{\n  position:relative;\n  border-radius:16px;\n  overflow:hidden;\n  border:1px solid #ccc;\n  touch-action:none;\n}\n\n.maze-img{\n  width:100%;\n  display:block;\n  pointer-events:none;\n}\n\n#mazeCanvas{\n  position:absolute;\n  inset:0;\n  width:100%;\n  height:100%;\n}\n\nbutton{\n  padding:10px 14px;\n  border-radius:10px;\n  border:1px solid #aaa;\n  background:#fff;\n  cursor:pointer;\n  font-size:15px;\n}\n\n.maze-buttons{\n  display:flex;\n  gap:8px;\n  flex-wrap:wrap;\n}\n\n.maze-back-wrap{\n  margin-top:16px;\n}\n\n.maze-back-link{\n  display:inline-flex;\n  align-items:center;\n  justify-content:center;\n  width:100%;\n  max-width:320px;\n  padding:14px 16px;\n  border:2px solid #1f1f1f;\n  border-radius:12px;\n  background:#e8e1cf;\n  color:#111;\n  text-decoration:none;\n  font-weight:800;\n  box-shadow:0 3px 0 #1f1f1f;\n  box-sizing:border-box;\n}\n\n.maze-back-link:active{\n  transform:translateY(2px);\n  box-shadow:0 1px 0 #1f1f1f;\n}\n\n@media (max-width:640px){\n  .maze-topbar{\n    flex-direction:column;\n  }\n\n  .maze-buttons{\n    width:100%;\n  }\n\n  button{\n    flex:1;\n  }\n\n  .maze-back-link{\n    max-width:none;\n  }\n}\n<\/style>\n\n<script>\n(function(){\n  const DURATION = 60; \/\/ 1 minute\n  const COLOR = \"rgba(255,64,129,0.9)\";\n  const WIDTH = matchMedia(\"(pointer: coarse)\").matches ? 12 : 7;\n\n  const stage = document.getElementById(\"mazeStage\");\n  const canvas = document.getElementById(\"mazeCanvas\");\n  const ctx = canvas.getContext(\"2d\");\n\n  const timeEl = document.getElementById(\"mazeTime\");\n  const statusEl = document.getElementById(\"mazeStatus\");\n  const restartBtn = document.getElementById(\"mazeRestart\");\n  const clearBtn = document.getElementById(\"mazeClear\");\n\n  let remaining = DURATION;\n  let timer = null;\n  let started = false;\n\n  let strokes = [];\n  let active = null;\n  let drawing = false;\n\n  function format(sec){\n    const m = Math.floor(sec \/ 60);\n    const s = sec % 60;\n    return String(m).padStart(2,\"0\") + \":\" + String(s).padStart(2,\"0\");\n  }\n\n  function updateTime(){\n    timeEl.textContent = format(remaining);\n  }\n\n  function startTimer(){\n    if(started) return;\n    started = true;\n    statusEl.textContent = \"\u2022 De tijd loopt\";\n    updateTime();\n\n    timer = setInterval(() => {\n      remaining--;\n      updateTime();\n\n      if(remaining <= 0){\n        clearInterval(timer);\n        statusEl.textContent = \"\u2022 De tijd is op\";\n        remaining = 0;\n        updateTime();\n      }\n    }, 1000);\n  }\n\n  function restart(){\n    clearInterval(timer);\n    timer = null;\n    remaining = DURATION;\n    started = false;\n    strokes = [];\n    active = null;\n    drawing = false;\n    statusEl.textContent = \"\u2022 Raak het doolhof aan om te starten\";\n    resize();\n    updateTime();\n  }\n\n  function resize(){\n    const r = stage.getBoundingClientRect();\n    const dpr = devicePixelRatio || 1;\n    canvas.width = r.width * dpr;\n    canvas.height = r.height * dpr;\n    ctx.setTransform(dpr,0,0,dpr,0,0);\n    redraw();\n  }\n\n  function point(e){\n    const r = stage.getBoundingClientRect();\n    return {\n      x:(e.clientX - r.left)\/r.width,\n      y:(e.clientY - r.top)\/r.height\n    };\n  }\n\n  function drawStroke(st){\n    if(st.length < 2) return;\n    const w = stage.clientWidth;\n    const h = stage.clientHeight;\n\n    ctx.beginPath();\n    ctx.strokeStyle = COLOR;\n    ctx.lineWidth = WIDTH;\n    ctx.lineCap = \"round\";\n    st.forEach((p,i)=>{\n      const x=p.x*w,y=p.y*h;\n      i?ctx.lineTo(x,y):ctx.moveTo(x,y);\n    });\n    ctx.stroke();\n  }\n\n  function redraw(){\n    ctx.clearRect(0,0,canvas.width,canvas.height);\n    strokes.forEach(drawStroke);\n    if(active) drawStroke(active);\n  }\n\n  canvas.addEventListener(\"pointerdown\", e=>{\n    e.preventDefault();\n    if(remaining <= 0) return;\n\n    resize();\n    startTimer();\n\n    drawing = true;\n    active = [];\n    strokes.push(active);\n\n    const p = point(e);\n    active.push(p,p);\n    redraw();\n  });\n\n  canvas.addEventListener(\"pointermove\", e=>{\n    if(!drawing) return;\n    active.push(point(e));\n    redraw();\n  });\n\n  canvas.addEventListener(\"pointerup\", ()=>{ drawing=false; active=null; });\n  canvas.addEventListener(\"pointercancel\", ()=>{ drawing=false; active=null; });\n\n  restartBtn.onclick = restart;\n  clearBtn.onclick = ()=>{ strokes=[]; active=null; redraw(); };\n\n  window.addEventListener(\"resize\", resize);\n\n  updateTime();\n  resize();\n})();\n<\/script>\n\n\n\n<div style=\"height:44px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>\u23f1\ufe0f 01:00 \u2022 Raak het doolhof aan om te starten Herstarten 1:00 Wis spoor \u2190 Terug naar vorige pagina<\/p>\n","protected":false},"author":2,"featured_media":0,"parent":1719,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-1729","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Doolhof - Tanja Ubert - Master Design Research<\/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:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Doolhof - Tanja Ubert - Master Design Research\" \/>\n<meta property=\"og:description\" content=\"\u23f1\ufe0f 01:00 \u2022 Raak het doolhof aan om te starten Herstarten 1:00 Wis spoor \u2190 Terug naar vorige pagina\" \/>\n<meta property=\"og:url\" content=\"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/\" \/>\n<meta property=\"og:site_name\" content=\"Tanja Ubert - Master Design Research\" \/>\n<meta property=\"article:modified_time\" content=\"2026-04-22T20:29:14+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/spel-leven-zonder-letters-v12-telefoon\\\/doolhof-telefoon\\\/\",\"url\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/spel-leven-zonder-letters-v12-telefoon\\\/doolhof-telefoon\\\/\",\"name\":\"Doolhof - Tanja Ubert - Master Design Research\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/#website\"},\"datePublished\":\"2026-04-22T16:58:41+00:00\",\"dateModified\":\"2026-04-22T20:29:14+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/spel-leven-zonder-letters-v12-telefoon\\\/doolhof-telefoon\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/spel-leven-zonder-letters-v12-telefoon\\\/doolhof-telefoon\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/spel-leven-zonder-letters-v12-telefoon\\\/doolhof-telefoon\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Master Design Research\",\"item\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Spel leven zonder letters (b)\",\"item\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/index.php\\\/master-design\\\/spel-leven-zonder-letters-v12-telefoon\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Doolhof\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/#website\",\"url\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/\",\"name\":\"Tanja Ubert - Master Design Research\",\"description\":\"What makes you weird is what makes you special - Meryl Streep\",\"publisher\":{\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/#organization\",\"name\":\"Tanja Ubert - Master Design Research\",\"url\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/Helping-1-e1749551471217.png\",\"contentUrl\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/Helping-1-e1749551471217.png\",\"width\":2054,\"height\":2054,\"caption\":\"Tanja Ubert - Master Design Research\"},\"image\":{\"@id\":\"https:\\\/\\\/masterdesign.ubertconcepts.nl\\\/livingatlas\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Doolhof - Tanja Ubert - Master Design Research","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:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/","og_locale":"en_GB","og_type":"article","og_title":"Doolhof - Tanja Ubert - Master Design Research","og_description":"\u23f1\ufe0f 01:00 \u2022 Raak het doolhof aan om te starten Herstarten 1:00 Wis spoor \u2190 Terug naar vorige pagina","og_url":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/","og_site_name":"Tanja Ubert - Master Design Research","article_modified_time":"2026-04-22T20:29:14+00:00","twitter_card":"summary_large_image","twitter_misc":{"Estimated reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/","url":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/","name":"Doolhof - Tanja Ubert - Master Design Research","isPartOf":{"@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/#website"},"datePublished":"2026-04-22T16:58:41+00:00","dateModified":"2026-04-22T20:29:14+00:00","breadcrumb":{"@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/doolhof-telefoon\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/"},{"@type":"ListItem","position":2,"name":"Master Design Research","item":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/"},{"@type":"ListItem","position":3,"name":"Spel leven zonder letters (b)","item":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/master-design\/spel-leven-zonder-letters-v12-telefoon\/"},{"@type":"ListItem","position":4,"name":"Doolhof"}]},{"@type":"WebSite","@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/#website","url":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/","name":"Tanja Ubert - Master Design Research","description":"What makes you weird is what makes you special - Meryl Streep","publisher":{"@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/#organization","name":"Tanja Ubert - Master Design Research","url":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/#\/schema\/logo\/image\/","url":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/wp-content\/uploads\/2024\/06\/Helping-1-e1749551471217.png","contentUrl":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/wp-content\/uploads\/2024\/06\/Helping-1-e1749551471217.png","width":2054,"height":2054,"caption":"Tanja Ubert - Master Design Research"},"image":{"@id":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/pages\/1729","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/comments?post=1729"}],"version-history":[{"count":5,"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/pages\/1729\/revisions"}],"predecessor-version":[{"id":1788,"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/pages\/1729\/revisions\/1788"}],"up":[{"embeddable":true,"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/pages\/1719"}],"wp:attachment":[{"href":"https:\/\/masterdesign.ubertconcepts.nl\/livingatlas\/index.php\/wp-json\/wp\/v2\/media?parent=1729"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}