From a5fcfafb665e96cae5d04dfba927db8dcdfd7f14 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Sun, 13 Dec 2020 17:16:08 -0500 Subject: 2020-12-13 --- files/es/web/api/navigator/mediadevices/index.html | 49 ++++++++++ files/es/web/css/background-attachment/index.html | 4 +- .../objetos_globales/date/getfullyear/index.html | 107 +++++---------------- 3 files changed, 76 insertions(+), 84 deletions(-) create mode 100644 files/es/web/api/navigator/mediadevices/index.html (limited to 'files/es') diff --git a/files/es/web/api/navigator/mediadevices/index.html b/files/es/web/api/navigator/mediadevices/index.html new file mode 100644 index 0000000000..0a7e70e7e4 --- /dev/null +++ b/files/es/web/api/navigator/mediadevices/index.html @@ -0,0 +1,49 @@ +--- +title: Navigator.mediaDevices +slug: Web/API/Navigator/mediaDevices +translation_of: Web/API/Navigator/mediaDevices +--- +
{{APIRef("Media Capture and Streams")}}
+ +

The Navigator.mediaDevices read-only property returns a {{domxref("MediaDevices")}} object, which provides access to connected media input devices like cameras and microphones, as well as screen sharing.

+ +

Syntax

+ +
var mediaDevices = navigator.mediaDevices;
+
+ +

Return value

+ +

The {{domxref("MediaDevices")}} singleton object. Usually, you just use this object's members directly, such as by calling {{domxref("navigator.mediaDevices.getUserMedia()")}}.

+ +

Specifications

+ + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('Media Capture', '#mediadevices', 'NavigatorUserMedia.mediaDevices')}}{{Spec2('Media Capture')}}Initial definition.
+ +

Browser compatibility

+ + + +

{{Compat("api.Navigator.mediaDevices")}}

+ +

See also

+ + diff --git a/files/es/web/css/background-attachment/index.html b/files/es/web/css/background-attachment/index.html index 0075a07f88..a632fd024e 100644 --- a/files/es/web/css/background-attachment/index.html +++ b/files/es/web/css/background-attachment/index.html @@ -55,7 +55,7 @@ translation_of: Web/CSS/background-attachment get out again. </p> -

Result

+

Resultado

{{EmbedLiveSample("Simple_example")}}

@@ -89,7 +89,7 @@ translation_of: Web/CSS/background-attachment little golden key in the lock, and to her great delight it fitted! </p> -

Resultado

+

Resultado

{{EmbedLiveSample("Multiple_background_image_support")}}

diff --git a/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html b/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html index be63745dbd..0d047fbbc3 100644 --- a/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html +++ b/files/es/web/javascript/referencia/objetos_globales/date/getfullyear/index.html @@ -1,121 +1,64 @@ --- title: Date.prototype.getFullYear() slug: Web/JavaScript/Referencia/Objetos_globales/Date/getFullYear +tags: + - Fecha + - JavaScript + - Prototipo + - Referencia + - metodo translation_of: Web/JavaScript/Reference/Global_Objects/Date/getFullYear ---
{{JSRef}}
-

El método getFullYear() devuelve el año del objeto de fecha especificado acorde al tiempo local.

+

El método getFullYear() devuelve el año de la fecha indicada acorde a la hora local.

-

Es prefererible usar este método en sustitución del método getYear().

+

Usa este método en lugar del método {{jsxref("Date.prototype.getYear()", "getYear()")}}.

+ +
{{EmbedInteractiveExample("pages/js/date-getfullyear.html","shorter")}}

Sintaxis

-
dateObj.getFullYear()
+
dateObj.getFullYear()
-

Parámetros

+

Valor devuelto

-

Ninguno.

+

Un número correspondiente al año de la fecha indicada, según la hora local.

-

Devuelve

+

Descripción

-

El valor devuelto por getFullYear() es un número absolute. Para fechas entre los años 1000 y 9999, getFullYear() devuelve un número de cuatro cifras, por ejemplo, 1995. Use esta función para obtener un año que cumpla con el efecto del año 2000.

+

El valor devuelto por getFullYear() es un número absoluto. Para fechas entre los años 1000 y 9999, getFullYear() devuelve un número de cuatro cifras, por ejemplo, 1995. Utiliza esta función para obtener un año que cumpla con los años posteriores al 2000.

Ejemplos

-

Usando getFullYear()

+

Utilizando getFullYear()

-

El siguiente ejemplo asigna un valor de cuatro digitos con el año actual a la variable year.

+

El siguiente ejemplo asigna el valor de cuatro dígitos del año actual a la variable year.

-
var today = new Date();
+
var today = new Date();
 var year = today.getFullYear();
 

Especificaciones

- - - - - - + - - - - - - - - - - - - - + + + - -
EspecificacionesEstadoComentario
{{SpecName('ES1')}}{{Spec2('ES1')}}Definición inicial. Implementado en JavaScript 1.3.
{{SpecName('ES5.1', '#sec-15.9.5.10', 'Date.prototype.getFullYear')}}{{Spec2('ES5.1')}}
{{SpecName('ES6', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}}{{Spec2('ES6')}}Especificación
{{SpecName('ESDraft', '#sec-date.prototype.getfullyear', 'Date.prototype.getFullYear')}}{{Spec2('ESDraft')}}
-

Compatibilidad en navegadores

- -
{{CompatibilityTable}}
+

Compatibilidad con navegadores

-
- - - - - - - - - - - - - - - - - - - -
CaracterísticaChromeFirefox (Gecko)Internet ExplorerOperaSafari
Soporte básico{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
- -
- - - - - - - - - - - - - - - - - - - - - -
CaracterísticaAndroidChrome para AndroidFirefox para móvil (Gecko)IE para móvilOpera para móvilSafari para móvil
Soporte básico{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}{{CompatVersionUnknown}}
-
+

{{Compat("javascript.builtins.Date.getFullYear")}}

-

Vea también

+

Ver también