blob: 3a0266620730d5f3633c56007d775eff72dd77f7 (
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
|
---
title: BatteryManager.chargingTime
slug: Web/API/BatteryManager/chargingTime
tags:
- API
- Battery API
- Propriedade
- Referencia
translation_of: Web/API/BatteryManager/chargingTime
---
<p>{{APIRef("Battery API")}}</p>
<p>Indica a quantidade de tempo, em segundos, que resta até que a bateria esteja totalmente carregada.</p>
<h2 id="Syntax" name="Syntax">Sintaxe</h2>
<pre class="syntaxbox">var <em>time</em> = navigator.battery.chargingTime</pre>
<p>No retorno, <code>time</code> é o tempo restante em segundos até que a bateria esteja totalmente carregada, ou 0 se a bateria já estiver com sua carga completa. Se a bateria estiver descarregando (ou se o sistema não é capaz de derminar o tempo restante para o carregamento), este valor é <code><a href="/en-US/docs/JavaScript/Reference/Global_Objects/Infinity" title="/en-US/docs/JavaScript/Reference/Global_Objects/Infinity">Infinity</a></code>.</p>
<h2 id="Especificações">Especificações</h2>
<p>{{page("/pt-BR/docs/Web/API/BatteryManager","Specifications")}}</p>
<h2 id="Compatibilidade_entre_navegadores">Compatibilidade entre navegadores</h2>
<p>{{page("/pt-BR/docs/Web/API/BatteryManager","Browser_compatibility")}}</p>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li>{{domxref("BatteryManager")}}</li>
<li>{{domxref("Navigator.battery")}}</li>
</ul>
|