Touchgui/plugins/org.apache.cordova.vibration/doc/ko/index.md

changeset 0
e8ccd40d0ef6
equal deleted inserted replaced
-1:000000000000 0:b6f509d7bcdb
1 <!---
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 -->
19
20 # org.apache.cordova.vibration
21
22 이 플러그인에 W3C 진동 사양 http://www.w3.org/TR/vibration/ 정렬
23
24 이 플러그인에는 장치를 진동 하는 방법을 제공 합니다.
25
26 ## 설치
27
28 cordova plugin add org.apache.cordova.vibration
29
30
31 ## 지원 되는 플랫폼
32
33 navigator.vibrate
34 navigator.notification.vibrate-아마존 화재 OS-안 드 로이드-블랙베리 10-파이어 폭스 OS-iOS-Windows Phone 7과 8
35
36 navigator.notification.vibrateWithPattern,
37 navigator.notification.cancelVibration-안 드 로이드
38
39 ## 진동 (권장)
40
41 이 함수는 전달 된 매개 변수에 따라 세 가지 다른 기능.
42
43 ### 기준 진동
44
45 주어진 시간 동안 장치를 진동.
46
47 navigator.vibrate(time)
48
49
50 또는
51
52 navigator.vibrate([time])
53
54
55 -**시간**: 진동 장치 (밀리초)입니다. *(수)*
56
57 #### 예를 들어
58
59 // Vibrate for 3 seconds
60 navigator.vibrate(3000);
61
62 // Vibrate for 3 seconds
63 navigator.vibrate([3000]);
64
65
66 #### iOS 단점
67
68 * **시간**: 지정 된 시간을 무시 하 고 미리 설정 된 시간 동안 진동.
69
70 navigator.vibrate(3000); // 3000 is ignored
71
72 #### 윈도 즈와 블랙베리 단점
73
74 * **시간**: 최대 시간은 2000ms (5s) 이며 최소 시간 1ms
75
76 navigator.vibrate(8000); // will be truncated to 5000
77
78 ### (안 드 로이드와 Windows에만 해당) 패턴으로 진동
79
80 지정 된 패턴으로 장치를 진동
81
82 navigator.vibrate(pattern);
83
84
85 * **패턴**:의 기간 (밀리초)에서 진동을 켜거나 끌 수 있는 순서. *(숫자의 배열)*
86
87 #### 예를 들어
88
89 // Vibrate for 1 second
90 // Wait for 1 second
91 // Vibrate for 3 seconds
92 // Wait for 1 second
93 // Vibrate for 5 seconds
94 navigator.vibrate([1000, 1000, 3000, 1000, 5000]);
95
96
97 ### 진동 (iOS에서 지원 되지 않음) 취소
98
99 즉시 모든 현재 실행 중인 진동을 취소합니다.
100
101 navigator.vibrate(0)
102
103
104 또는
105
106 navigator.vibrate([])
107
108
109 또는
110
111 navigator.vibrate([0])
112
113
114 0의 매개 변수 전달, 빈 배열, 또는 0 값의 한 요소 배열은 어떤 진동을 취소할 것 이다.
115
116 ## *notification.vibrate (사용 되지 않음)
117
118 주어진 시간 동안 장치를 진동.
119
120 navigator.notification.vibrate(time)
121
122
123 * **시간**: 진동 장치 (밀리초)입니다. *(수)*
124
125 ### 예를 들어
126
127 // Vibrate for 2.5 seconds
128 navigator.notification.vibrate(2500);
129
130
131 ### iOS 단점
132
133 * **시간**: 지정 된 시간을 무시 하 고 미리 설정 된 시간 동안 진동.
134
135 navigator.notification.vibrate();
136 navigator.notification.vibrate(2500); // 2500 is ignored
137
138
139 ## *notification.vibrateWithPattern (사용 되지 않음)
140
141 지정 된 패턴으로 장치 진동.
142
143 navigator.notification.vibrateWithPattern(pattern, repeat)
144
145
146 * **패턴**:의 기간 (밀리초)에서 진동을 켜거나 끌 수 있는 순서. *(숫자의 배열)*
147 * **반복**: 반복 (취소 될 때까지 반복 됩니다), 시작 하는 또는-1 (기본값) 없는 반복에 대 한 패턴 배열에 선택적 인덱스. *(수)*
148
149 ### 예를 들어
150
151 // Immediately start vibrating
152 // vibrate for 100ms,
153 // wait for 100ms,
154 // vibrate for 200ms,
155 // wait for 100ms,
156 // vibrate for 400ms,
157 // wait for 100ms,
158 // vibrate for 800ms,
159 // (do not repeat)
160 navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]);
161
162
163 ## *notification.cancelVibration (사용 되지 않음)
164
165 즉시 모든 현재 실행 중인 진동을 취소합니다.
166
167 navigator.notification.cancelVibration()
168
169
170 * 참고-때문에 w3c 사양 가진 줄 맞춤, 별표 메서드 밖으로 단계별로 됩니다.

mercurial