aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/batterymanager/dischargingtime/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/api/batterymanager/dischargingtime/index.html')
-rw-r--r--files/ko/web/api/batterymanager/dischargingtime/index.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/files/ko/web/api/batterymanager/dischargingtime/index.html b/files/ko/web/api/batterymanager/dischargingtime/index.html
new file mode 100644
index 0000000000..c7165c7a52
--- /dev/null
+++ b/files/ko/web/api/batterymanager/dischargingtime/index.html
@@ -0,0 +1,71 @@
+---
+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">&lt;div id="dischargingTime"&gt;(discharging time unknown)&lt;/div&gt;
+</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>
+
+<div class="hidden">이 페이지와 호화되는 표는 구조화된 데이터에서 생성됩니다. 당신이 데이터에 기여하기를 원한다면, <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> 를 검토하시고서 우리에게 여러모로 요청을 보내보세요.</div>
+
+<p>{{Compat("api.BatteryManager.dischargingTime")}}</p>
+
+<h2 id="같이_보세요">같이 보세요</h2>
+
+<ul>
+ <li>{{domxref("BatteryManager")}}</li>
+ <li>{{domxref("Navigator.getBattery")}}</li>
+</ul>