{"id":12183,"date":"2022-04-21T15:41:04","date_gmt":"2022-04-21T06:41:04","guid":{"rendered":"http:\/\/www.gisdeveloper.co.kr\/?p=12183"},"modified":"2022-04-21T22:05:40","modified_gmt":"2022-04-21T13:05:40","slug":"gwc-ui-library-space","status":"publish","type":"post","link":"http:\/\/www.gisdeveloper.co.kr\/?p=12183","title":{"rendered":"#GWC UI Library : Space"},"content":{"rendered":"<p>\uc6f9 UI \ub77c\uc774\ube0c\ub7ec\ub9ac\uc778 GWC\uc5d0\uc11c \uc81c\uacf5\ud558\ub294 Space \ucef4\ud3ec\ub10c\ud2b8\uc5d0 \ub300\ud55c \uc608\uc81c \ucf54\ub4dc\uc785\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 UI \uac04\uc758 \uc5ec\ubc31\uc744 \uc9c0\uc815\ud558\uae30 \uc704\ud55c \ubaa9\uc801\uc73c\ub85c \uc0ac\uc6a9\ub429\ub2c8\ub2e4.<\/p>\n<p>\uba3c\uc800 DOM \uad6c\uc131\uc744 \uc704\ud55c JS \ucf54\ub4dc\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"js\">\r\nconst domLayout = document.createElement(\"div\");\r\ndomLayout.classList.add(\"login\");\r\n\r\ndomLayout.innerHTML = `\r\n    <div class=\"login-form\">\r\n        <div class='login-title'>GEOSERVICE<\/div>\r\n        <gwc-space size=\"10px\"><\/gwc-space>\r\n        <gwc-textinput class=\"user-id\" hint=\"ID \ub610\ub294 \uba54\uc77c, \uc804\ud654\ubc88\ud638\"><\/gwc-textinput>\r\n        <gwc-textinput class=\"user-pw\" hint=\"\ube44\ubc00\ubc88\ud638\" type=\"password\"><\/gwc-textinput>\r\n        <gwc-button title=\"\ub85c\uadf8\uc778\"><\/gwc-button>\r\n        <gwc-space size=\"30px\"><\/gwc-space>\r\n        <div class=\"login-form-tools\">\r\n            <gwc-icon-button title=\"\ud68c\uc6d0\uac00\uc785\" icon=\"images\/user_reg.svg\"><\/gwc-icon-button>\r\n            <gwc-icon-button title=\"\ube44\ubc00\ubc88\ud638 \ucc3e\uae30\" icon=\"images\/find_pw.svg\"><\/gwc-icon-button>\r\n        <\/div>\r\n    <\/div>\r\n`;\r\ndocument.body.appendChild(domLayout);\r\n<\/pre>\n<p>Space \ucef4\ud3ec\ub10c\ud2b8\ub294 gw-space\ub77c\ub294 Tag\ub85c \uad6c\uc131\ub420 \uc218 \uc788\ub294\ub370, \uc5ec\ubc31\uc5d0 \ub300\ud55c \ud06c\uae30\ub97c 10px \ub610\ub294 20px,10px \ub4f1\uc73c\ub85c \ub098\ud0c0\ub0bc \uc218 \uc788\uc2b5\ub2c8\ub2e4. 10px\uc758 \uacbd\uc6b0 \uac00\ub85c\uc640 \uc138\ub85c \ubaa8\ub450\uc5d0 \ub300\ud55c \uc5ec\ubc31\uc758 \ud06c\uae30\uc774\uace0 20px,10px\uc740 \uac00\ub85c\uc640 \uc138\ub85c\uc5d0 \ub300\ud55c \ud06c\uae30\ub97c \uc11c\ub85c \ub2e4\ub974\uac8c \uc9c0\uc815\ud569\ub2c8\ub2e4. \uc704\uc758 \ucf54\ub4dc\uc5d0 \ub300\ud55c \uacb0\uacfc\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/www.gisdeveloper.co.kr\/wp-content\/uploads\/2022\/04\/gwc-space.png\" alt=\"\" width=\"1114\" height=\"750\" class=\"aligncenter size-full wp-image-12185\" \/><\/p>\n<div>\uc774 \ucef4\ud3ec\ub10c\ud2b8\uc5d0 \ub300\ud55c CSS \ucf54\ub4dc\ub294 \ud544\uc694\uce58 \uc54a\uc73c\ub098 \uc704\uc758 \ucf54\ub4dc\uc5d0\uc11c \uc0ac\uc6a9\ub41c CSS\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4.<\/div>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"css\">\r\n.login {\r\n    position: fixed;\r\n    top: 0;\r\n    left: 0;\r\n    bottom: 0;\r\n    right: 0;\r\n    background: black;\r\n}\r\n\r\n.login .login-form {\r\n    position: absolute;\r\n    left: 50%;\r\n    top: 50%;\r\n    transform: translate(-50%, -50%);\r\n    display: inline-flex;\r\n    flex-flow: column;\r\n    gap: 0.5em;\r\n    background: rgba(255,255,255,0.1);\r\n    padding: 4em 4em 1.5em 4em;\r\n    border-radius: 1em;\r\n    box-shadow: -0.6px -0.6px 0.6px rgba(255,255,255,0.3);\r\n}\r\n\r\n.login .login-form gwc-textinput {\r\n    width: 300px;\r\n}\r\n\r\n.login .login-form .login-title {\r\n    font-family: Raleway;\r\n    color: white;\r\n    font-size: 2em;\r\n}\r\n\r\n.login .login-form .login-form-tools {\r\n    display: flex;\r\n    justify-content: center;\r\n    align-items: center;\r\n    zoom: 0.9;\r\n}\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>\uc6f9 UI \ub77c\uc774\ube0c\ub7ec\ub9ac\uc778 GWC\uc5d0\uc11c \uc81c\uacf5\ud558\ub294 Space \ucef4\ud3ec\ub10c\ud2b8\uc5d0 \ub300\ud55c \uc608\uc81c \ucf54\ub4dc\uc785\ub2c8\ub2e4. \uc774 \ucef4\ud3ec\ub10c\ud2b8\ub294 UI \uac04\uc758 \uc5ec\ubc31\uc744 \uc9c0\uc815\ud558\uae30 \uc704\ud55c \ubaa9\uc801\uc73c\ub85c \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uba3c\uc800 DOM \uad6c\uc131\uc744 \uc704\ud55c JS \ucf54\ub4dc\ub294 \ub2e4\uc74c\uacfc \uac19\uc2b5\ub2c8\ub2e4. const domLayout = document.createElement(&#8220;div&#8221;); domLayout.classList.add(&#8220;login&#8221;); domLayout.innerHTML = ` GEOSERVICE `; document.body.appendChild(domLayout); Space \ucef4\ud3ec\ub10c\ud2b8\ub294 gw-space\ub77c\ub294 Tag\ub85c \uad6c\uc131\ub420 \uc218 \uc788\ub294\ub370, \uc5ec\ubc31\uc5d0 \ub300\ud55c \ud06c\uae30\ub97c 10px \ub610\ub294 20px,10px \ub4f1\uc73c\ub85c \ub098\ud0c0\ub0bc \uc218 \uc788\uc2b5\ub2c8\ub2e4. &hellip; <\/p>\n<p class=\"link-more\"><a href=\"http:\/\/www.gisdeveloper.co.kr\/?p=12183\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;#GWC UI Library : Space&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[140],"tags":[],"class_list":["post-12183","post","type-post","status-publish","format-standard","hentry","category-gwc"],"_links":{"self":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/12183","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=12183"}],"version-history":[{"count":5,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/12183\/revisions"}],"predecessor-version":[{"id":12190,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=\/wp\/v2\/posts\/12183\/revisions\/12190"}],"wp:attachment":[{"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=12183"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=12183"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/www.gisdeveloper.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=12183"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}