blob: c0a58ec4c677e349920c80a4f46e6eabb6497ad9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
---
title: Proximity Events
slug: Web/API/Proximity_Events
translation_of: Web/API/Proximity_Events
original_slug: WebAPI/Proximity
tags:
- API
- Experimental
- Proximity Events
- Reference
- Deprecated
---
<div>{{DefaultAPISidebar("Proximity Events")}}{{Deprecated_Header}}</div>
<div class="notecard warning">
<h4>Warning</h4>
<p>The Proximity Events APIs are not supported by any current major browser, and should not be used. This page is provided for historical interest.</p>
</div>
<p>근접 이벤트는 사용자가 디바이스에 가까이 갔을 때를 알 수 있는 간단한 방법이다. 예를 들어, 사용자에게 전화가 걸려왔을 때 디바이스에 귀를 가까이하면, 근접 이벤트들은 스마트폰의 화면이 꺼지게 하여 이러한 변화에 대응할 수 있게 해준다.</p>
<p></p>근접 링크는 두 가지가 있다. (문서를 확인하려먼 링크를 참고하시오.):</p>
<ul>
<li>{{domxref("UserProximityEvent")}}, handled by <code>window.onuserproximity</code></li>
<li>{{domxref("DeviceProximityEvent")}}, handled by <code>window.ondeviceproximity</code></li>
</ul>
<p>두 가지의 차이점은 {{domxref("UserProximityEvent")}} 은 유저가 "가깝다"고 여겨질 때 단순히 <code>true</code>라고 알려주는 반면에, {{domxref("DeviceProximityEvent")}}는 근처 객체의 실제 거리 추정치를 제공한다.</p>
<div class="note">
<p><strong>Note:</strong> 당연히 이 API는 근접 센서를 가진 장치를 필요로 하며, 이 근접 센서는 대게 모바일 다비이스들에서만 이용 가능하다. 근접 센서가 없는 장치들에서는 근접 이벤트들을 지원할 수는 있을 지 몰라도 해당 이벤트들은 절대 발생하지 않을 것이다.</p>
</div>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('Proximity Events', '', 'Proximity Events') }}</td>
<td>{{ Spec2('Proximity Events') }}</td>
<td>Initial specification</td>
</tr>
</tbody>
</table>
|