blob: 60d772b7e0c9c225cdddcbfcc7d9034ad33da150 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
---
title: BatteryManager.dischargingTime (배터리관리기 방전시간)
slug: Web/API/BatteryManager/dischargingTime
translation_of: Web/API/BatteryManager/dischargingTime
---
<div>{{obsolete_header}}</div>
<div>{{APIRef("Battery API")}}</div>
<p>몇 초 단위로, 배터리가 완전히 방전될 때까지 남은 시간량을 가리킵니다.</p>
<div class="note">
<p>반환되는 시간이 정확하더라도, 개인정보보호 정책 사유로 브라우저들이 더 큰 간격(대개 15분)으로 시간량을 반올림합니다.</p>
</div>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">var <em>time</em> = battery.dischargingTime</pre>
<p>반환되는 중에, <code>time</code> 은 {{domxref("BatteryManager")}} object(객체)인 <code><em>battery</em></code> 가 완전히 방전되고 시스템이 중단되는 몇 초 뒤에 남게 되는 시간입니다. 배터리가 현재 방전되기보다 충전되거나 시스템이 남은 방전 시간을 보고할 수 없다면, 이 값은 무한 값입니다.</p>
<h2 id="Example" name="Example">예제</h2>
<h3 id="HTML_콘텐츠">HTML 콘텐츠</h3>
<pre class="brush: html"><div id="dischargingTime">(discharging time unknown)</div>
</pre>
<h3 id="자바언어_콘텐츠">자바언어 콘텐츠</h3>
<pre class="brush: js; highlight:[3]">navigator.getBattery().then(function(battery) {
var time = battery.dischargingTime;
document.querySelector('#dischargingTime').textContent = battery.dischargingTime;
});
</pre>
<p>{{ EmbedLiveSample('Example', '100%', 30) }}</p>
<h2 id="설명서">설명서</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">사양 (설명)</th>
<th scope="col">상태 (설명)</th>
<th scope="col">비고</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("Battery API")}}</td>
<td>{{Spec2("Battery API")}}</td>
<td>최초 정의</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("api.BatteryManager.dischargingTime")}}</p>
<h2 id="같이_보세요">같이 보세요</h2>
<ul>
<li>{{domxref("BatteryManager")}}</li>
<li>{{domxref("Navigator.getBattery")}}</li>
</ul>
|