분류 전체보기

영어공부

JavaScript Output

JavaScript Display Possibilities JavaScript can "display" data in different ways: Writing into an HTML element, using innerHTML. Writing into the HTML output using document.write(). Writing into an alert box, using window.alert(). Writing into the browser console, using console.log(). 자바스크립트는 가능성을 보여준다? 자바스크립트는 몇가지 다른 방식으로 데이터를 표현할 수 있다. innerHtml 을 사용함으로서 html 요소 안에 작성할수 있다. document.write(). 를..

영어공부

JavaScript Where To

The tags. html 안에서 자바스크립트 코드는 태그 사이에 삽입되어야만 한다. Old JavaScript examples may use a type attribute: . The type attribute is not required. JavaScript is the default scripting language in HTML. 오래된 자바스크립트 예제는 를 사용할지도 모른다. 타입 속성은 요구되지 않는다. 자바스크립트는 html 안에서 기본적으로 스크립팅 되는 언어이다? JavaScript Functions and Events A JavaScript function is a block of JavaScript code, that can be executed when "called" for. F..

영어공부

JavaScript Introduction

This page contains some examples of what JavaScript can do. 이 페이지는 자바스크립트가 무엇을 할 수 있는지에 대한 조금의 예제를 포함한다. JavaScript Can Change HTML Content One of many JavaScript HTML methods is getElementById(). This example uses the method to "find" an HTML element (with id="demo") and changes the element content (innerHTML) to "Hello JavaScript": 자바스크립트는 html 문서를 변경할 수 있다. 많은 자바스크립트 html 메소드 중 하나는 getElement..

영어공부

JavaScript Tutorial

JavaScript is the programming language of HTML and the Web. JavaScript is easy to learn. This tutorial will teach you JavaScript from basic to advanced. 자바스크립트는 웹과 html 의 프로그래밍 언어이다. 자바스크립트는 배우기 쉽다. 이 튜토리얼은 기초부터 고급된 내용까지, 자바스크립트를 가르칠 것이다. Examples in Each Chapter With our "Try it Yourself" editor, you can edit the source code and view the result. "Try it Yourself" 로서 너는 소스코드를 수정하고, 결과를 볼수 있다. We..

영어공부

CSS Specificity

What is Specificity? If there are two or more conflicting CSS rules that point to the same element, the browser follows some rules to determine which one is most specific and therefore wins out. Think of specificity as a score/rank that determines which style declarations are ultimately applied to an element. The universal selector (*) has low specificity, while ID selectors are highly specific!..

영어공부

CSS Counters

CSS counters are "variables" maintained by CSS whose values can be incremented by CSS rules (to track how many times they are used). Counters let you adjust the appearance of content based on its placement in the document. css counters는 css 규칙에 의해서 증가되어질수 있는 css 변수 변수로 유지되어지는 변수다. 카운터는 document 에 위치에 근거해서 내용의 외관을 적용하게 한다? Automatic Numbering With Counters CSS counters are like "variables". The v..

영어공부

CSS Attribute Selectors

Style HTML Elements With Specific Attributes It is possible to style HTML elements that have specific attributes or attribute values. 속석을 명시한 html 요소 스타일하기 속성 또는 속성 값을 명시되어저 있는 html 요소를 스타일링 하는 것은 가능하다. CSS [attribute] Selector The [attribute] selector is used to select elements with a specified attribute. The following example selects all elements with a target attribute: [attribute] 선택자는 명시된 속..

영어공부

CSS Image Sprites

Image Sprites An image sprite is a collection of images put into a single image. A web page with many images can take a long time to load and generates multiple server requests. Using image sprites will reduce the number of server requests and save bandwidth. image sprite는 하나의 이미지로 놓기 위한 이미지의 집합이다. 많은 이미지를 가지고 있는 웹페이지는 많은 서버에 리퀘스트를 발생시키고 로드시키기 위해 많은 시간을 소비한다. image sprite를 사용하는 것은 서버의 요청의 수를 감소시..

영어공부

CSS Dropdowns

Create a hoverable dropdown with CSS. css 로 hoveable 한 dropdown을 만들어라. Demo: Dropdown Examples Move the mouse over the examples below: 아래 예제에 마우스를 옮겨라 Basic Dropdown Create a dropdown box that appears when the user moves the mouse over an element. 기본적인 드롭다운 사용자가 요소 위에 마우스를 올릴때, 생겨지는 드롭다운을 만들어라. Example Explained HTML) Use any element to open the dropdown content, e.g. a , or a element. Use a con..

dev/기타

jconsole 사용법

jcosole 을 사용하기 위해선 java 를 실행시킬때, 몇가지 옵션을 추가하여야 한다. 사진에서 처럼 4가지 옵션을 추가했다. jconsole을 사용하기 위해서 추가한 4가지 옵션 -Dcom.sun.management.jmxremote.port=9999 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false -Djava.rmi.server.hostname=10.20.2.60 jconsole 이 접근하기 위해 9999 포트를 할당했고, 해당 ip는 알아서 설정하면 된다. jconsole 의 위치는 자신이 jdk를 설치한 곳에 bin에 있다. 실행방법은 아주 단순하다. ip와 포트를 입력하고 해당 ..

jeongsu
'분류 전체보기' 카테고리의 글 목록 (13 Page)