{"id":763,"date":"2026-02-26T18:37:06","date_gmt":"2026-02-26T17:37:06","guid":{"rendered":"https:\/\/kriptoblog.hu\/cimkek\/"},"modified":"2026-02-26T18:41:34","modified_gmt":"2026-02-26T17:41:34","slug":"cimkek","status":"publish","type":"page","link":"https:\/\/kriptoblog.hu\/en\/cimkek\/","title":{"rendered":"\u2b21 C\u00edmk\u00e9k \u2014 Mining Pool"},"content":{"rendered":"<style>\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Source+Code+Pro:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');\n.hex-grid-page{background:#0D1117;min-height:100vh;padding:40px 20px;font-family:'Inter',sans-serif}\n.hg-title{color:#E6EDF3;font-family:'Source Code Pro',monospace;font-size:32px;font-weight:700;text-align:center;margin-bottom:8px}\n.hg-title span{color:#00FF41}\n.hg-subtitle{color:#8B949E;font-size:14px;text-align:center;margin-bottom:35px}\n.hex-container{display:flex;flex-wrap:wrap;justify-content:center;max-width:950px;margin:0 auto;padding:10px}\n.hex-row{display:flex;justify-content:center;margin-bottom:-28px}\n.hex-row.offset{margin-left:65px}\n.hex-cell{width:120px;height:138px;margin:0 4px;cursor:pointer;transition:all 0.3s ease;position:relative}\n.hex-cell svg{width:100%;height:100%;filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3))}\n.hex-cell:hover svg polygon{stroke:#F7931A;stroke-width:3}\n.hex-cell:hover .hex-text .hex-name{fill:#F7931A}\n.hex-cell.glow svg{animation:hexGlow 2.5s ease-in-out infinite}\n@keyframes hexGlow{0%,100%{filter:drop-shadow(0 0 6px rgba(0,255,65,0.2))}50%{filter:drop-shadow(0 0 18px rgba(0,255,65,0.5))}}\n.hex-text{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);text-align:center;pointer-events:none;width:90px}\n.hex-name{fill:#E6EDF3;font-family:'Source Code Pro',monospace;font-size:11px;font-weight:600}\n.hex-count{fill:#00FF41;font-family:'Source Code Pro',monospace;font-size:10px}\n.hex-tooltip{position:fixed;background:#161B22;border:1px solid #00FF41;border-radius:6px;padding:10px 16px;z-index:100;display:none;box-shadow:0 0 20px rgba(0,255,65,0.15);pointer-events:none}\n.hex-tooltip .tt-name{color:#F7931A;font-family:'Source Code Pro',monospace;font-weight:700;font-size:14px}\n.hex-tooltip .tt-count{color:#00FF41;font-size:12px;margin-top:2px}\n.hg-loading{text-align:center;color:#8B949E;padding:40px}\n@media(max-width:640px){\n.hex-cell{width:90px;height:104px}\n.hex-row.offset{margin-left:49px}\n.hex-row{margin-bottom:-21px}\n.hex-text{width:68px}\n.hex-name{font-size:9px}\n}\n<\/style>\n<div class=\"hex-grid-page\">\n  <h1 class=\"hg-title\">\u2b21 Mining Pool <span>C\u00edmk\u00e9k<\/span><\/h1>\n  <p class=\"hg-subtitle\">Kattints egy cell\u00e1ra a c\u00edmke oldal\u00e1nak megtekint\u00e9s\u00e9hez<\/p>\n  <div class=\"hg-loading\" id=\"hg-loading\">Hash-ek feldolgoz\u00e1sa&#8230;<\/div>\n  <div class=\"hex-container\" id=\"hex-container\"><\/div>\n  <div class=\"hex-tooltip\" id=\"hex-tooltip\"><\/div>\n<\/div>\n<script>\n(function(){\n  const tooltip=document.getElementById('hex-tooltip');\n  \n  function createHexSVG(fillColor, strokeColor){\n    return '<svg viewBox=\"0 0 120 138\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><polygon points=\"60,0 120,34.5 120,103.5 60,138 0,103.5 0,34.5\" fill=\"'+fillColor+'\" stroke=\"'+strokeColor+'\" stroke-width=\"2\"\/><\/svg>';\n  }\n  \n  async function init(){\n    const tags=await fetch('\/wp-json\/wp\/v2\/tags?per_page=100&_fields=id,name,slug,count,link&orderby=count&order=desc').then(r=>r.json());\n    const active=tags.filter(t=>t.count>0);\n    \n    document.getElementById('hg-loading').style.display='none';\n    const container=document.getElementById('hex-container');\n    const maxCount=Math.max(...active.map(t=>t.count));\n    const cols=5;\n    \n    let row=null;\n    active.forEach((tag,i)=>{\n      const rowIdx=Math.floor(i\/cols);\n      if(i%cols===0){\n        row=document.createElement('div');\n        row.className='hex-row'+(rowIdx%2===1?' offset':'');\n        container.appendChild(row);\n      }\n      \n      const ratio=tag.count\/maxCount;\n      const r=Math.round(26+ratio*15);\n      const g=Math.round(35+ratio*40);\n      const blue=Math.round(50+ratio*30);\n      const fillColor='rgb('+r+','+g+','+blue+')';\n      const strokeIntensity=Math.round(50+ratio*205);\n      const strokeColor='rgba(0,'+strokeIntensity+',65,'+(0.3+ratio*0.5)+')';\n      \n      const cell=document.createElement('div');\n      cell.className='hex-cell'+(ratio>0.4?' glow':'');\n      cell.style.opacity='0';\n      cell.style.transform='scale(0.7)';\n      cell.innerHTML=createHexSVG(fillColor,strokeColor)\n        +'<div class=\"hex-text\"><svg viewBox=\"0 0 90 40\" style=\"width:90px;overflow:visible\"><text class=\"hex-name\" x=\"45\" y=\"15\" text-anchor=\"middle\" dominant-baseline=\"middle\">'+tag.name+'<\/text><text class=\"hex-count\" x=\"45\" y=\"32\" text-anchor=\"middle\" dominant-baseline=\"middle\">'+tag.count+'<\/text><\/svg><\/div>';\n      \n      cell.addEventListener('mouseenter',(e)=>{\n        tooltip.innerHTML='<div class=\"tt-name\">'+tag.name+'<\/div><div class=\"tt-count\">'+tag.count+' cikk<\/div>';\n        tooltip.style.display='block';\n      });\n      cell.addEventListener('mousemove',(e)=>{\n        tooltip.style.left=(e.clientX+15)+'px';\n        tooltip.style.top=(e.clientY-10)+'px';\n      });\n      cell.addEventListener('mouseleave',()=>{tooltip.style.display='none'});\n      cell.addEventListener('click',()=>{window.location.href=tag.link});\n      \n      row.appendChild(cell);\n      \n      setTimeout(()=>{\n        cell.style.transition='opacity 0.5s ease, transform 0.5s ease';\n        cell.style.opacity='1';\n        cell.style.transform='scale(1)';\n      },i*40+100);\n    });\n  }\n  init();\n})();\n<\/script>","protected":false},"excerpt":{"rendered":"<p>\u2b21 Mining Pool C\u00edmk\u00e9k Kattints egy cell\u00e1ra a c\u00edmke oldal\u00e1nak megtekint\u00e9s\u00e9hez Hash-ek feldolgoz\u00e1sa&#8230;<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-763","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/pages\/763","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/comments?post=763"}],"version-history":[{"count":1,"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/pages\/763\/revisions"}],"predecessor-version":[{"id":767,"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/pages\/763\/revisions\/767"}],"wp:attachment":[{"href":"https:\/\/kriptoblog.hu\/en\/wp-json\/wp\/v2\/media?parent=763"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}