{"id":541,"date":"2024-04-15T08:11:36","date_gmt":"2024-04-14T23:11:36","guid":{"rendered":"http:\/\/inwelly.com\/?p=541"},"modified":"2024-04-22T06:09:23","modified_gmt":"2024-04-21T21:09:23","slug":"javascript-%eb%a9%94%eb%89%b4-%eb%8f%84%ed%8a%b8%eb%a9%94%eb%89%b4","status":"publish","type":"post","link":"https:\/\/inwelly.com\/?p=541","title":{"rendered":"JAVASCRIPT \uba54\ub274 &#8211; \ub3c4\ud2b8\uba54\ub274"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code>&lt;html>\n&lt;head>\n&lt;title> \u25a6.\uc18c\uc2a4\uac00 \ubcf5\uc7a1\ud558\uc9c0\ub9cc  \ud50c\ub808\uc26c\uac19\uc740 \ud6a8\uacfc\ub0b4\ub294 \ub3c4\ud2b8 \uac00\uc9c0 \uba54\ub274.&lt;\/title>\n&lt;style type=\"text\/css\">\n.dot { position: absolute; width: 8; height: 8; visibility: hidden; background-color: red; font-size: 1px; cursor: pointer; cursor: hand; z-index: 100 }\n.dotoff { position: absolute; width: 8; height: 8; visibility: hidden; background-color: gray; font-size: 1px; cursor:default; z-index: 100}\n.dotempty { position: absolute; width: 8; height: 8; visibility: hidden; background-color: orange; font-size: 1px; cursor: pointer; cursor: hand; zindex: 100 }\n.caption { position: absolute; visibility: hidden; font-family: Tahoma; color: black; font-size: 11px; text-align: Center; cursor: default; z-index: 1 }\nbody { margin: 0px; background-color: white; }\na { color: silver; text-decoration: none }\np { font-size: 10px; font-family: tahoma; color: black }\n&lt;\/style>\n\n&lt;script language=\"JavaScript\" type=\"text\/javascript\">\nfunction lib_bwcheck(){ \/\/Browsercheck (needed)\nthis.ver=navigator.appVersion\nthis.agent=navigator.userAgent\nthis.dom=document.getElementById?1:0\nthis.opera5=(navigator.userAgent.indexOf(\"Opera\")>-1 &amp;&amp; document.getElementById)?1:0\nthis.ie5=(this.ver.indexOf(\"MSIE 5\")>-1 &amp;&amp; this.dom &amp;&amp; !this.opera5)?1:0;\nthis.ie6=(this.ver.indexOf(\"MSIE 6\")>-1 &amp;&amp; this.dom &amp;&amp; !this.opera5)?1:0;\nthis.ie4=(document.all &amp;&amp; !this.dom &amp;&amp; !this.opera5)?1:0;\nthis.ie=this.ie4||this.ie5||this.ie6\nthis.mac=this.agent.indexOf(\"Mac\")>-1\nthis.ns6=(this.dom &amp;&amp; parseInt(this.ver) >= 5) ?1:0;\nthis.ns4=(document.layers &amp;&amp; !this.dom)?1:0;\nthis.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)\nreturn this\n}\nvar bw=lib_bwcheck()\n&lt;\/script>\n  \n&lt;\/head>\n\n&lt;BODY bgcolor=\"#207400\" text=\"#FFFFFF\" link=\"#FFFFFF\" vlink=\"#FFFFFF\">\n\n\n&lt;br>\n&lt;script language=\"javascript1.2\" type=\"text\/javascript\">\n&lt;!--\n\/\/======================================\nfunction getObjectRef(name) {\nif(document.getElementById) return document.getElementById(name);\nelse if(document.all) return document.all&#91;name];\nelse return null;\n}\n\n\/\/ general functions to assist the script\n\/\/========================================\nfunction show(name) {\nvar el = getObjectRef(name);\nif(el) el.style.visibility = \"visible\";\n}\nfunction hide(name) {\nvar el = getObjectRef(name);\nif(el) el.style.visibility = \"hidden\";\n}\nfunction getWidth(name) {\nvar el = getObjectRef(name);\nreturn el.offsetWidth;\n}\nfunction getHeight(name) {\nvar el = getObjectRef(name);\nreturn el.offsetHeight;\n}\nfunction moveMe(name,x,y) {\nvar el = getObjectRef(name);\nif(el) { el.style.top = parseInt(y); el.style.left = parseInt(x); } \n}\nfunction moveBy(name,x,y) {\nvar el = getObjectRef(name);\nif(el) { el.style.top = parseInt(el.style.top) + parseInt(y); el.style.left = parseInt(el.style.left) + parseInt(x); } \n}\n\n\/\/ Creates the menu objects\n\/\/==========================\nvar menuCount = 0;\nfunction menuObject(name,x,y,caption, r, parent) {\nif ( (!document.getElementById&amp;&amp;!document.all) || navigator.userAgent.indexOf(\"Opera\")>-1) return;\ndocument.write('&lt;div id=\"divDot' + menuCount + '\" class=\"dotempty\" style=\"top: ' + y + '; left: ' + x + '\">&lt;\/div>');\ndocument.write('&lt;div id=\"divCap' + menuCount + '\" class=\"caption\" style=\"top: 0; left: 0\">' + caption + '&lt;\/div>');\n \nthis.name = name;\nthis.parent = parent\nthis.ref = \"divDot\" + menuCount;\nthis.caption = \"divCap\" + menuCount\nif(r) this.radius = r;\nelse this.radius = 400;\nthis.subMenus = new Array();\nthis.state = 0;\nthis.moving = false;\nif(this.parent) this.action = \"null\";\nelse this.action = \"toggle\";\nif(this.parent) this.startAngle = parent.startAngle;\nelse this.startAngle = 0;\n\ngetObjectRef(this.ref).objRef = this.name;\n \nthis.show = function() { show(this.ref); }\nthis.hide = function() { hide(this.ref); }\nthis.moveMe = function(x,y) { if(this.parent) { x += this.parent.x(); y += this.parent.y(); } moveMe(this.ref,x,y); }\nthis.moveBy = function(x,y) { moveBy(this.ref,x,y); }\nthis.x = function() { return parseInt(getObjectRef(this.ref).style.left); }\nthis.y = function() { return parseInt(getObjectRef(this.ref).style.top); }\nthis.w = function() { return getWidth(this.ref); }\nthis.h = function() { return getHeight(this.ref); }\n\nthis.showCaption = function() {\n    moveMe(this.caption, this.x() - (getWidth(this.caption)\/2) + (this.w()\/2), (this.y() + this.h()));\n    show(this.caption);\n  }\n  this.hideCaption = function() {\n    hide(this.caption);\n  }\n  this.setCaption = function(c) { getObjectRef(this.caption).innerHTML = c;}\n \n  this.addItem = function(c,action,r) {\n    getObjectRef(this.ref).className = \"dot\";\n    if(!r) r = this.radius\/2;\n    var sub = new menuObject(this.name + \".subMenus&#91;\" + this.subMenus.length + \"]\",0,0,c,r,this);\n    sub.parent = this;\n    sub.action = action;\n    sub.moveMe(0,0);\n    this.subMenus&#91;this.subMenus.length] = sub;\n    return sub;\n  }\n \n  this.expand = function() {\n    if(this.subMenus.length > 0) {\n      var p = true;\n      if(this.parent) {\n        p = !this.parent.moving;\n        for(var i=0; i&lt;this.parent.subMenus.length;i++)\n          p = p &amp;&amp; ((this.parent.subMenus&#91;i].state==0) || (this.parent.subMenus&#91;i].state==this.parent.subMenus&#91;i].subMenus.length)) &amp;&amp; (this.parent.subMenus&#91;i].moving==false);\n      } else var o = false;\n     \n\n      if((!this.parent || this.parent.state == this.parent.subMenus.length) &amp;&amp; p) {\n        if(this.parent) this.collapseAll(this.name);\n       \n        var diff = 360 \/ this.subMenus.length;\n        for(var i=0;i&lt;this.subMenus.length;i++){\n          this.subMenus&#91;i].moveMe(0,0);\n          this.subMenus&#91;i].show();\n          this.moving = true;\n          this.subMenus&#91;i].slide(this.subMenus&#91;i].radius * cos(degToRad((diff*i)+this.startAngle)), this.subMenus&#91;i].radius * sin(degToRad((diff*i)+this.startAngle)), this.name + \".subMenus&#91;\" + i + \"].showCaption();\" + this.name + \".moving=false;\" + this.name + \".state+=1;\");\n        }\n        if(this.parent){\n          getObjectRef(this.parent.ref).style.filter = \"alpha (opacity=33)\";\n          getObjectRef(this.parent.ref).style.MozOpacity = \"33%\";\n\n          getObjectRef(this.parent.ref).className = \"dotoff\";\n          getObjectRef(this.parent.caption).style.filter = \"alpha (opacity=33)\";\n          getObjectRef(this.parent.caption).style.MozOpacity = \"33%\";\n          for(i=0;i&lt;this.parent.subMenus.length;i++) {\n              getObjectRef(this.parent.subMenus&#91;i].ref).style.filter = \"alpha (opacity=66)\";\n              getObjectRef(this.parent.subMenus&#91;i].ref).style.MozOpacity = \"66%\";\n              getObjectRef(this.parent.subMenus&#91;i].caption).style.filter = \"alpha (opacity=66)\";\n              getObjectRef(this.parent.subMenus&#91;i].caption).style.MozOpacity = \"66%\";       \n          }\n          if(this.parent.parent) {\n            for(i=0;i&lt;this.parent.parent.subMenus.length;i++) {\n              getObjectRef(this.parent.parent.subMenus&#91;i].ref).style.filter = \"alpha (opacity=33)\";\n              getObjectRef(this.parent.parent.subMenus&#91;i].ref).style.MozOpacity = \"33%\";\n              getObjectRef(this.parent.parent.subMenus&#91;i].ref).className = \"dotoff\";\n              getObjectRef(this.parent.parent.subMenus&#91;i].caption).style.filter = \"alpha (opacity=33)\";       \n              getObjectRef(this.parent.parent.subMenus&#91;i].caption).style.MozOpacity = \"33%\";\n            }\n            getObjectRef(this.parent.parent.ref).style.MozOpacity = \"33%\";\n            getObjectRef(this.parent.parent.ref).style.MozOpacity = \"33%\";\n            getObjectRef(this.parent.parent.ref).className = \"dotoff\";\n          }\n        }\n        getObjectRef(this.ref).style.filter = \"alpha (opacity=66)\";\n        getObjectRef(this.caption).style.filter = \"alpha (opacity=66)\"; \n        getObjectRef(this.ref).style.MozOpacity = \"66%\";\n        getObjectRef(this.caption).style.MozOpacity = \"66%\";\n      }\n    } \n  }\n\n  this.collapse = function() {\n    var p = true;\n    p = !this.moving;\n    for(var i=0; i&lt;this.subMenus.length;i++)\n      p = p &amp;&amp; (this.subMenus&#91;i].state==0)  &amp;&amp; (this.subMenus&#91;i].moving==false);\n   \n    if(p &amp;&amp; this.subMenus.length > 0) {\n      for(var i=0;i&lt;this.subMenus.length;i++){\n        this.subMenus&#91;i].hideCaption();\n        this.moving = true;\n        this.subMenus&#91;i].slide(0, 0, this.name + \".subMenus&#91;\" + i + \"].hide();\" + this.name + \".moving=false;\" + this.name + \".state-=1;\");\n      }\n      if(this.parent){\n        getObjectRef(this.parent.ref).style.filter = \"alpha (opacity=66)\";\n        getObjectRef(this.parent.ref).style.MozOpacity = \"66%\";\n        if(this.parent.subMenus.length != 0)\n          getObjectRef(this.parent.ref).className = \"dot\";\n        else\n          getObjectRef(this.parent.ref).className = \"dotempty\";\n        getObjectRef(this.parent.caption).style.filter = \"alpha (opacity=66)\";\n        getObjectRef(this.parent.caption).style.MozOpacity = \"66%\";\n        for(i=0;i&lt;this.parent.subMenus.length;i++) {\n          getObjectRef(this.parent.subMenus&#91;i].ref).style.filter = \"alpha (opacity=100)\";\n          getObjectRef(this.parent.subMenus&#91;i].ref).style.MozOpacity = \"100%\";\n          if(this.parent.subMenus&#91;i].subMenus.length != 0)\n            getObjectRef(this.parent.subMenus&#91;i].ref).className = \"dot\";\n          else\n            getObjectRef(this.parent.subMenus&#91;i].ref).className = \"dotempty\";\n          getObjectRef(this.parent.subMenus&#91;i].caption).style.filter = \"alpha (opacity=100)\";       \n          getObjectRef(this.parent.subMenus&#91;i].caption).style.MozOpacity = \"100%\";\n        }\n        if(this.parent.parent) {\n          for(i=0;i&lt;this.parent.parent.subMenus.length;i++) {\n            getObjectRef(this.parent.parent.subMenus&#91;i].ref).style.filter = \"alpha (opacity=66)\";\n            getObjectRef(this.parent.parent.subMenus&#91;i].ref).style.MozOpacity = \"66%\";\n            if(this.parent.parent.subMenus&#91;i].subMenus.length != 0)\n              getObjectRef(this.parent.parent.subMenus&#91;i].ref).className = \"dot\";\n            else\n              getObjectRef(this.parent.parent.subMenus&#91;i].ref).className = \"dotempty\";\n            getObjectRef(this.parent.parent.subMenus&#91;i].caption).style.filter = \"alpha (opacity=66)\";       \n            getObjectRef(this.parent.parent.subMenus&#91;i].caption).style.MozOpacity = \"66%\";\n          }\n        }\n      }\n      getObjectRef(this.ref).style.filter = \"alpha (opacity=100)\";\n      getObjectRef(this.caption).style.filter = \"alpha (opacity=100)\";      \n      getObjectRef(this.ref).style.MozOpacity = \"100%\";\n      getObjectRef(this.caption).style.MozOpacity = \"100%\";\n    }\n  }\n\n  this.collapseAll = function(except) {\n    for(var i=0;i&lt;this.parent.subMenus.length;i++) {\n      if(this.parent.subMenus&#91;i].name!=except &amp;&amp; this.parent.subMenus&#91;i].state==this.parent.subMenus&#91;i].subMenus.length) {\n        this.parent.subMenus&#91;i].collapse();\n      }   \n    }\n  }\n \n  this.toggle = function(e) {\n    if(document.all) id = window.event.srcElement;\n    else id = e.target;\n    var dot = eval(id.objRef);\n   \n    if(dot.state==0 &amp;&amp; !dot.moving) dot.expand();\n    else if(dot.state==dot.subMenus.length &amp;&amp; !dot.moving) dot.collapse()\n  }\n \n  this.doAction = function(e) {\n    if(document.all) id = window.event.srcElement;\n    else id = e.target;\n    var dot = eval(id.objRef);\n   \n    if(dot.action == \"toggle\") dot.toggle(e);\n    else eval(dot.action);\n  }\n \n  \/\/change these if you want to change the events that trigger the actions\n  \/\/========================================================================\n  \/\/getObjectRef(this.ref).onmousemove = this.toggle;\n  getObjectRef(this.ref).onmouseup = this.doAction;\n \n  this.slide = function(xx,yy,func) {\n    if(!func) func = \"\";\n    var px = this.parent.x();\n    var py = this.parent.y();\n   \n    var x = xx - this.x() + px;\n    var y = yy - this.y() + py;\n   \n    var d = sqrt(square(xx-this.x() + px) + square(yy-this.y() + py));\n   \n    var v = d\/8;\n    if(v&lt;1) v = 1;\n       \n    if( (Math.abs(x) &lt; v) &amp;&amp; (Math.abs(y) &lt; v) ) {\n      moveMe(this.ref,xx + px,yy + py);     \n      if(func != \"\") eval(func);\n    } else {   \n      var a = round(atan(x,y));\n      dx = round(v * cos(degToRad(a)));\n      dy = round(v * sin(degToRad(a)));\n  \n      this.moveBy(dx,dy);\n      setTimeout(this.name + \".slide(\" + xx + \",\" + yy + \", '\" + func + \"');\",10);   \n    }\n  }\n  \/\/ Preoading the windows filters.\n  if (menuCount==0 &amp;&amp; document.all) document.all&#91;this.ref].style.filter = \"alpha (opacity=100)\";\n  menuCount++;\n  return this;\n}\n\/\/ Math functions\n\/\/================\nvar pi = Math.PI;\nfunction square(x) { return (x*x); }\nfunction sqrt(x) { return Math.sqrt(x); }\nfunction round(x) { return Math.round(x); }\nfunction rand(x,y) { return (round(Math.random()*(y-x)) + x); }\n\nfunction cos(x) { return Math.cos(x) }\nfunction sin(x) { return Math.sin(x) }\n \nfunction degToRad(x) { return ( x\/(360\/(2*pi)) ); }\nfunction radToDeg(x) { return ( x*(360\/(2*pi)) ); }\n\nfunction atan(s,t) {\n  if( s == 0.0 &amp;&amp; t > 0.0)\n    angle = 90.0;\n  else if(s == 0.0 &amp;&amp; t &lt; 0.0)\n    angle = 270.0;\n  else if (s &lt; 0.0 )\n    angle = 180.0 + radToDeg(Math.atan(t\/s));\n  else if (s > 0.0 &amp;&amp; t &lt; 0.0)\n    angle = 360.0 + radToDeg(Math.atan(t\/s));\n  else {\n    if(s==0.0) s=0.00001;\n    angle = radToDeg(Math.atan(t\/s));\n  }\n  if(angle &lt; 0.0) angle += 360.0;\n  return angle;\n}\n\n\/\/get dimentions of the page\nif(document.all) pageWidth = document.body.offsetWidth-20;\nelse pageWidth = innerWidth;\nif(document.all) pageHeight = document.body.offsetHeight-4;\nelse pageHeight = innerHeight;\n\n\/\/Create main menu\nvar menu = new menuObject(\"menu\",pageWidth\/2,pageHeight\/2,\"\uba54\ub274\",pageHeight\/2);\nmenu.startAngle = -90;\n\n\/\/show menu and caption\nmenu.show();\nmenu.showCaption();\n\n\/\/Add submenus\nmenu.addItem(\"1\ubc88\uba54\ub274\",\"window.open('\/news')\");\nmenu.addItem(\"2\ubc88\uba54\ub274\",\"toggle\");\nmenu.addItem(\"3\ubc88\uba54\ub274\",\"toggle\");\nmenu.addItem(\"4\ubc88\uba54\ub274\",\"toggle\");\nmenu.addItem(\"5\ubc88\uba54\ub274\",\"toggle\");\n\nmenu.subMenus&#91;1].addItem(\"2-1&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-2&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-3&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-4&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-5&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-6&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-7&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;1].addItem(\"2-8&lt;br>\uac00\uc9c0\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\n\nmenu.subMenus&#91;2].addItem(\"3-1\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;2].addItem(\"3-2\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;2].addItem(\"3-3\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;2].addItem(\"3-4\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;2].addItem(\"3-5\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;2].addItem(\"3-6\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\n\nmenu.subMenus&#91;3].addItem(\"4-1\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;3].addItem(\"4-2\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;3].addItem(\"4-3\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;3].addItem(\"4-4\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;3].addItem(\"4-5\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;3].addItem(\"4-6\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;3].addItem(\"4-7\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\n\nc = menu.subMenus&#91;4].addItem(\"5-1\uba54\ub274\",\"toggle\");\nc.startAngle = 15;\nmenu.subMenus&#91;4].addItem(\"5-2\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;4].addItem(\"5-3\uba54\ub274\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;4].addItem(\"5-4\uba54\ub274\",\"toggle\");\n\nmenu.subMenus&#91;4].subMenus&#91;0].addItem(\"5-1\uc758&lt;br>1\ubc88\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;4].subMenus&#91;0].addItem(\"5-1\uc758&lt;br>2\ubc88\",\"window.open('http:\/\/hongtting.com')\");\nmenu.subMenus&#91;4].subMenus&#91;0].addItem(\"5-1\uc758&lt;br>3\ubc88\",\"window.open('http:\/\/hongtting.com')\");\n\nmenu.subMenus&#91;4].subMenus&#91;3].addItem(\"5-4\uc758&lt;br>1\ubc88\",\"window.open('http:\/\/www.site.url')\");\nmenu.subMenus&#91;4].subMenus&#91;3].addItem(\"5-4\uc758&lt;br>2\ubc88\",\"window.open('http:\/\/www.site.url')\");\n\/\/-->\n&lt;\/script>\n\n&lt;\/body>\n&lt;\/html><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":1279,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6],"tags":[],"class_list":["post-541","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-javascript"],"_links":{"self":[{"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/posts\/541","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/inwelly.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=541"}],"version-history":[{"count":1,"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/posts\/541\/revisions"}],"predecessor-version":[{"id":542,"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/posts\/541\/revisions\/542"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/inwelly.com\/index.php?rest_route=\/wp\/v2\/media\/1279"}],"wp:attachment":[{"href":"https:\/\/inwelly.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/inwelly.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/inwelly.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}