diff options
author | Juan Vásquez <juan@logicalbricks.com> | 2022-02-10 08:50:04 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-10 09:50:04 -0500 |
commit | ed4a2245e597824340eff509f51989639cf52751 (patch) | |
tree | d85eee536d90768a42793221e58223a9e1bcd00c /files/es/web | |
parent | 308d02bcbe1872f4c5c5990cfe4a895dd227a6b3 (diff) | |
download | translated-content-ed4a2245e597824340eff509f51989639cf52751.tar.gz translated-content-ed4a2245e597824340eff509f51989639cf52751.tar.bz2 translated-content-ed4a2245e597824340eff509f51989639cf52751.zip |
#4 Update batterymanager chargingtime [ES] (#3983)
* Update batterymanager chargingtime [ES]
- [x] update content
- [x] change from HTML to MD.
I have a concern about the `EmbedLiveSample` macro if I left blank the
first argument, `{{EmbedLiveSample('', '100%', 30)}}`
in the web I can see I have two flaws but
if I use {{EmbedLiveSample('Example', '100%', 30)}}
the flaw got away.
* Update files/es/web/api/batterymanager/chargingtime/index.md
* Update files/es/web/api/batterymanager/chargingtime/index.md
Co-authored-by: Alexander <alexander_belial999@hotmail.com>
* add suggestions
* Add suggestions
Co-authored-by: Alexander <alexander_belial999@hotmail.com>
Diffstat (limited to 'files/es/web')
-rw-r--r-- | files/es/web/api/batterymanager/chargingtime/index.html | 26 | ||||
-rw-r--r-- | files/es/web/api/batterymanager/chargingtime/index.md | 59 |
2 files changed, 59 insertions, 26 deletions
diff --git a/files/es/web/api/batterymanager/chargingtime/index.html b/files/es/web/api/batterymanager/chargingtime/index.html deleted file mode 100644 index 6876834636..0000000000 --- a/files/es/web/api/batterymanager/chargingtime/index.html +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: BatteryManager.chargingTime -slug: Web/API/BatteryManager/chargingTime -tags: - - API - - Battery - - Battery API - - Mobile - - Property -translation_of: Web/API/BatteryManager/chargingTime ---- -<p>{{ APIRef("BatteryManager") }}</p> -<h2 id="Summary" name="Summary">Resumen</h2> -<p>Indica la cantidad de tiempo, en segundos, que faltan para que la batería esté completamente cargada.</p> -<h2 id="Syntax" name="Syntax">Sintaxis</h2> -<pre class="syntaxbox">var <em>time</em> = navigator.battery.chargingTime</pre> -<p>Cuando devuelve, <code>time</code> es el tiempo restante en segundos para que la batería esté completamente cargada o 0 (cero) si la batería ya está completamente cargada. Si la batería está descargándose —o si el sistema no puede determinar el restante de carga— el valor es <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="Especificaciones">Especificaciones</h2> -<p>{{page("/en-US/docs/Web/API/BatteryManager","Specifications")}}</p> -<h2 id="Compatibilidad_con_navegadores">Compatibilidad con navegadores</h2> -<p>{{page("/en-US/docs/Web/API/BatteryManager","Browser_compatibility")}}</p> -<h2 id="See_also">See also</h2> -<ul> - <li>{{domxref("BatteryManager")}}</li> - <li>{{domxref("window.navigator.battery","navigator.battery")}}</li> -</ul> diff --git a/files/es/web/api/batterymanager/chargingtime/index.md b/files/es/web/api/batterymanager/chargingtime/index.md new file mode 100644 index 0000000000..3e01154290 --- /dev/null +++ b/files/es/web/api/batterymanager/chargingtime/index.md @@ -0,0 +1,59 @@ +--- +title: BatteryManager.chargingTime +slug: Web/API/BatteryManager/chargingTime +translation_of: Web/API/BatteryManager/chargingTime +browser-compat: api.BatteryManager.chargingTime +--- +{{deprecated_header}} + +{{APIRef("Battery API")}} + +Indica la cantidad de tiempo, en segundos, que faltan para que la batería esté completamente cargada. + +> **Nota:** Incluso si el tiempo devuelto es exacto al segundo, los navegadores los redondean a un intervalo más alto (típicamente a los 15 minutos más cercanos) por razones de privacidad. + +## Sintaxis + +```js +var time = battery.chargingTime; +``` + +La variable `time` recibe el tiempo restante en segundos para que la batería +esté completamente cargada o 0 (cero) si la `battery` ya está completamente cargada. +Si la batería está descargándose el valor es [`Infinity`](/es/docs/Web/JavaScript/Reference/Global_Objects/Infinity). + +## Ejemplo + +### Contenido HTML + +```html +<div id="chargingTime">(tiempo de descarga desconocido)</div> +``` + +### Contenido JavaScript + +```js +navigator.getBattery().then(function(battery) { + var time = battery.chargingTime; + + document.querySelector("#chargingTime").textContent = battery.chargingTime; +}); +``` + +### Resultado + +{{EmbedLiveSample('', '100%', 30)}} + +## Especificaciones + +{{Specifications}} + +## Compatibilidad con navegadores + +{{Compat}} + +## Ver también + +- {{domxref("BatteryManager")}} +- {{domxref("Navigator.getBattery")}} + |