2020/01

영어공부

JavaScript Syntax

JavaScript syntax is the set of rules, how JavaScript programs are constructed: 자바스크립트 문법은 어떻게 자바스크립트 프로그램들이 구성되어있는가를 정의하는 규칙의 집합이다. JavaScript Values The JavaScript syntax defines two types of values: Fixed values and variable values. Fixed values are called literals. Variable values are called variables. 자바스크립트 변수 자바스크립트 문법은 두가지 변수의 타입을 정의한다. 고정된 변수 변할수 있는 변수 고정된 변수는 literals라고 불리운다 변할수 있는 변수는..

영어공부

JavaScript Statements

JavaScript Programs A computer program is a list of "instructions" to be "executed" by a computer. In a programming language, these programming instructions are called statements. A JavaScript program is a list of programming statements. In HTML, JavaScript programs are executed by the web browser. 컴퓨터 프로그램이란, 컴퓨터의 의해서 실행되어지는 명령어의 리스트이다. 프로그래밍 언어 안에서 이러한 명령어들은 statements 라고 불리어진다. 자바스크립트 프로그램은 프..

영어공부

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를 사용하는 것은 서버의 요청의 수를 감소시..

jeongsu
'2020/01 글 목록