From ed4a2245e597824340eff509f51989639cf52751 Mon Sep 17 00:00:00 2001 From: Juan Vásquez Date: Thu, 10 Feb 2022 08:50:04 -0600 Subject: #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 * add suggestions * Add suggestions Co-authored-by: Alexander --- .../web/api/batterymanager/chargingtime/index.html | 26 ---------- .../web/api/batterymanager/chargingtime/index.md | 59 ++++++++++++++++++++++ 2 files changed, 59 insertions(+), 26 deletions(-) delete mode 100644 files/es/web/api/batterymanager/chargingtime/index.html create mode 100644 files/es/web/api/batterymanager/chargingtime/index.md (limited to 'files/es') 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 ---- -

{{ APIRef("BatteryManager") }}

-

Resumen

-

Indica la cantidad de tiempo, en segundos, que faltan para que la batería esté completamente cargada.

-

Sintaxis

-
var time = navigator.battery.chargingTime
-

Cuando devuelve, time 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 Infinity.

-

Especificaciones

-

{{page("/en-US/docs/Web/API/BatteryManager","Specifications")}}

-

Compatibilidad con navegadores

-

{{page("/en-US/docs/Web/API/BatteryManager","Browser_compatibility")}}

-

See also

-
    -
  • {{domxref("BatteryManager")}}
  • -
  • {{domxref("window.navigator.battery","navigator.battery")}}
  • -
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 +
(tiempo de descarga desconocido)
+``` + +### 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")}} + -- cgit v1.2.3-54-g00ecf