Skip to content

Commit

Permalink
doc(flicking, animate) : Support Korean
Browse files Browse the repository at this point in the history
  • Loading branch information
mixed committed Dec 29, 2015
1 parent 5fb1cd0 commit af87fba
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/flicking.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ eg.module("flicking", ["jQuery", eg, window, document, eg.MovableCoord], functio
* @param {Object} options
* @param {Boolean} [options.hwAccelerable=eg.isHWAccelerable()] Force to use HW compositing <ko>하드웨어 가속 사용여부</ko>
* @param {String} [options.prefix=eg-flick] Prefix string for flicking elements <ko>요소에 설정될 접두사</ko>
* @param {Number} [options.deceleration=0.0006] Deceleration this value can be altered to change the momentum animation duration. higher numbers make the animation shorter
* @param {Number} [options.deceleration=0.0006] Deceleration value can be altered to change the momentum animation duration. higher numbers make the animation shorter <ko>감속계수는 가속도를 조절하여 애니메이션 시간을 변경할 수 있다. 높을수록 애니메이션이 짧아진다.</ko>
* @param {Boolean} [options.horizontal=true] For move direction (when horizontal is false, then move direction is vertical) <ko>이동방향 설정 (horizontal == true 가로방향, horizontal == false 세로방향)</ko>
* @param {Boolean} [options.circular=false] To make panels rotate infinitely <ko>순환 여부</ko>
* @param {Number|Array} [options.previewPadding=[0,0]] Padding value to display previous and next panels. If set array value the order is left(up) to right(down) <ko>이전과 다음 패널을 출력하는 프리뷰 형태에 사용되는 padding 값. 배열 형태로 지정시 좌측(상단), 우측(하단) 순서로 지정</ko>
Expand Down
8 changes: 4 additions & 4 deletions src/hook/animate.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ eg.module("animate", ["jQuery", window], function($, global) {
* @ko jQuery animate 사용시 transform을 사용할 수 있도록 확장한 animate 메소드
* @name jQuery#animate
* @method
* @param {Object} properties An object of CSS properties and values that the animation will move toward.
* @param {Number|String} [duration=4000] A string or number determining how long the animation will run.
* @param {String} [easing="swing"] A string indicating which easing function to use for the transition.
* @param {Function} [complete] A function to call once the animation is complete.
* @param {Object} properties An object of CSS properties and values that the animation will move toward. <ko>애니메이션 할 CSS 속성과 값으로 구성된 오브젝트</ko>
* @param {Number|String} [duration=4000] A string or number determining how long the animation will run. <ko>애니메이션 진행 시간</ko>
* @param {String} [easing="swing"] A string indicating which easing function to use for the transition. <ko>transition에 사용할 easing 함수명</ko>
* @param {Function} [complete] A function to call once the animation is complete. <ko>애니메이션이 완료한 후 호출하는 함수</ko>
*
* @example
* $("#box")
Expand Down

0 comments on commit af87fba

Please sign in to comment.