본문으로 건너뛰기
  1. Authors/

Yna

Javascript Custom HTMLElement
·2 분· loading · loading
Yna
JavaScript로 CustomElement 작성법 # 이 글은 Javascript로 Custom HTMLElemnet를 만드는 방법을 포함합니다. 이 글은 Node.js와 npm의 기능에 대해 설명하지 않습니다. Custom Tag를 확인하기 위해 Node와 npm(node package manager)를 사용했습니다.(별도의 환경에서도 확인 가능합니다.) Custom HTMLElement만들기 # custom-tag.js class CustomElement extends HTMLElement { constructor() { super(); // Create a shadow root. const shadowRoot = this.attachShadow({ mode: "open" }); const button = document.createElement("input"); button.type = "button"; button.value = "my button"; shadowRoot.appendChild(button); } } customElements.define("my-custom-tag", CustomElement); index.html
vmware 가상머신 virtualbox 가상머신으로 변경하는 방법
·1 분· loading · loading
Yna
# vmware가상머신 virtualbox로 변경하기 # 본 글은 vmware로 만들어진 가상머신을 virtualbox의 기능을 사용해서 virtualbox 가상머신으로 만드는 방법을 제공합니다. vdmk -> vdi로 변환 # virtualbox 설치 경로로 이동합니다. 탐색기의 주소창에서 cmd를 입력합니다.