(Effects 02) animate() 메소드
SoloLearn jQuery 번역
animate()
animate() 메소드
- The
animate()
method lets you animate to a set value, or to a value relative to the current value.animate()
메소드는 설정 값에 애니메이션을 적용할 수 있다.
- You need to define the CSS properties to be animated as its parameter in JSON format (
"key":"value"
pairs).- CSS 속성을 JSON 형식(
"key":"value"
쌍)의 매개변수로 정의해야 한다.
- CSS 속성을 JSON 형식(
- The second parameter defines the speed of the animation.
- 두 번째 매개변수는 애니메이션의 속도를 정의한다.
- For example, the following code animates the
width
property of the div in 1 second to the value 250px:- 예를 들어, 다음 코드는 div의
width
속성을 1초에 250px 값으로 애니메이션 한다.
- 예를 들어, 다음 코드는 div의
$("div").click(function() {
$("div").animate({width:'250px'}, 1000);
});
- Note the JSON format for providing the CSS parameters.
- CSS 매개변수를 제공하기 위한 JSON 형식에 주의해라.
- The JSON syntax was also used in the previous modules when manipulating CSS properties.
- JSON 구문은 CSS 속성을 조작할 때에도 사용했었다.
All property names must be
camel-cased
when used with the animate() method (camelCase
is the practice of writing compound words or phrases such that each word or abbreviation begins with a capital letter with the first word in lowercase).animate() 메소드를 사용할 때, 모든 속성 이름을
낙타 대문자
로 사용해야 한다.(
camelCase
는 첫 번째 단어가 소문자로 시작하고, 각 단어가 대문자로 시작하는 복합어를 말한다)
You will need to write
paddingLeft
instead of padding-left,marginRight
instead of margin-right, and so on.padding-left 대신
paddingLeft
로, margin-right 대신marginRight
으로 작성해야 한다.
- Multiple properties can be animated at the same time by separating them with
commas
.- 여러 속성을
쉼표
로 구분해서 동시에 애니메이션을 적용할 수 있다.
- 여러 속성을
$("div").animate({
width: '250px',
height: '250px'
}, 1000);
- It is also possible to define
relative
values (the value is then relative to the element’s current value).relative
값을 정의할 수도 있다.- (값은 element의 현재 값과 관련된다)
- This is done by putting += or -= in front of the value:
- 이는 += 또는 -=를 값 앞에 넣음으로써 수행할 수 있다.
$("div").animate({
width: '+=250px',
height: '+=250px'
}, 1000);
To stop an animation before it is finished, jQuery provides the
stop()
method.애니메이션이 끝나기 전에 멈추기 위해, jQuery는
stop()
메소드를 제공한다.
Animation Queue
queue 애니메이션
- By default, jQuery comes with queue functionality for animations.
- 기본적으로 jQuery는 애니메이션 queue 기능을 제공한다.
- This means that if you write multiple animate() calls one after another, jQuery creates an “internal” queue for these method calls.
- 즉, 여러 animate() 호출을 차례로 작성하면, jQuery는 이러한 메소드 호출을 위한 “내부” queue를 생성한다.
- Then it runs the animate calls
one-by-one
.- 그런 다음, 애니메이션을 하나하나씩 실행한다.
var div = $("div");
div.animate({opacity: 1});
div.animate({height: '+=100px', width: '+=100px', top: '+=100px'}, 500);
div.animate({height: '-=100px', width: '-=100px', left: '+=100px'}, 500);
div.animate({height: '+=100px', width: '+=100px', top: '-=100px'}, 500);
div.animate({height: '-=100px', width: '-=100px', left: '-=100px'}, 500);
div.animate({opacity: 0.5});
- Each
animate()
method call will run one after another.- 각
animate()
메소드 호출은 차례로 실행된다.
- 각
- Remember, to manipulate the position of elements, you need to set the CSS position property of the element to
relative
,fixed
, orabsolute
.- element의 위치를 조작하려면, element의 CSS position 속성을
relative
,fixed
,absolute
로 설정해야 한다.
- element의 위치를 조작하려면, element의 CSS position 속성을
The animate() method, just like the hide/show/fade/slide methods, can take an optional
callback
function as its parameter, which is executed after the current effect is finished.hide/show/fade/slide 메소드와 마찬가지로, animate() 메소드는 선택적 매개변수로
callback
함수를 사용할 수 있다.
callback
함수는 현재 효과가 끝난 후에 실행된다.
QUIZ
- Which of the following can be used with the animate() method?
- 다음 중 animate() 메소드와 함께 사용할 수 있는 것은 무엇인가?
[ ] padding_Left
[ ] padding-Left
[ ]
paddingLeft
- Fill in the blanks to animate the opacity and height properties of the div element in 5 seconds.
- div element의 opacity와 height 속성을 5초로 애니메이션 해라.
$("div").animate({
opacity: 0.5,
height: '+=100px'
}, 5000);
- By default, jQuery creates a queue for each animate() call.
- 기본적으로 jQuery는 각 animate() 호출에 대해 queue를 생성한다.
True