Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/camsong/You-Dont-Need-jQuery
Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript.
https://github.com/camsong/You-Dont-Need-jQuery
Last synced: 14 days ago
JSON representation
Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript.
- Host: GitHub
- URL: https://github.com/camsong/You-Dont-Need-jQuery
- Owner: camsong
- License: mit
- Created: 2015-11-21T16:02:26.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-13T03:37:44.000Z (over 1 year ago)
- Last Synced: 2024-08-08T16:11:05.692Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 710 KB
- Stars: 20,330
- Watchers: 528
- Forks: 1,755
- Open Issues: 3
-
Metadata Files:
- Readme: README-es.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred-test - camsong/You-Dont-Need-jQuery - Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript. (JavaScript)
- my-awesome-starred - camsong/You-Dont-Need-jQuery - Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript. (JavaScript)
- awesome-repositories - camsong/You-Dont-Need-jQuery - Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript. (JavaScript)
- awesome-github-star - You-Dont-Need-jQuery
- jimsghstars - camsong/You-Dont-Need-jQuery - Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript. (JavaScript)
- awesome - camsong/You-Dont-Need-jQuery - Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript. (JavaScript)
- awesome - camsong/You-Dont-Need-jQuery - Examples of how to do query, style, dom, ajax, event etc like jQuery with plain javascript. (JavaScript)
README
## Tú no necesitas jQuery [![Build Status](https://api.travis-ci.org/nefe/You-Dont-Need-jQuery.svg)](https://travis-ci.org/nefe/You-Dont-Need-jQuery)
El desarrollo Frontend evoluciona día a día, y los navegadores modernos ya han implementado nativamente APIs para trabajar con DOM/BOM, las cuales son muy buenas, por lo que definitivamente no es necesario aprender jQuery desde cero para manipular el DOM. En la actualidad, gracias al surgimiento de librerías frontend como React, Angular y Vue, manipular el DOM es contrario a los patrones establecidos, y jQuery se ha vuelto menos importante. Este proyecto resume la mayoría de métodos alternativos a jQuery, pero de forma nativa con soporte IE 10+.
## Tabla de Contenidos
1. [Traducción](#traducción)
1. [Query Selector](#query-selector)
1. [CSS & Estilo](#css--estilo)
1. [Manipulación DOM](#manipulación-dom)
1. [Ajax](#ajax)
1. [Eventos](#eventos)
1. [Utilidades](#utilidades)
1. [Promesas](#promesas)
1. [Animaciones](#animaciones)
1. [Alternativas](#alternativas)
1. [Navegadores soportados](#navegadores-soportados)## Traducción
* [한국어](./README.ko-KR.md)
* [正體中文](./README.zh-TW.md)
* [简体中文](./README.zh-CN.md)
* [Bahasa Melayu](./README-my.md)
* [Bahasa Indonesia](./README-id.md)
* [Português(PT-BR)](./README.pt-BR.md)
* [Tiếng Việt Nam](./README-vi.md)
* [Español](./README-es.md)
* [Русский](./README-ru.md)
* [Кыргызча](./README-kg.md)
* [Türkçe](./README-tr.md)
* [Italiano](./README-it.md)
* [Français](./README-fr.md)
* [日本語](./README-ja.md)
* [Polski](./README-pl.md)## Query Selector
En lugar de los selectores comunes como clase, id o atributos podemos usar `document.querySelector` o `document.querySelectorAll` como alternativas. Las diferencias radican en:
* `document.querySelector` devuelve el primer elemento que cumpla con la condición
* `document.querySelectorAll` devuelve todos los elementos que cumplen con la condición en forma de NodeList. Puede ser convertido a Array usando `[].slice.call(document.querySelectorAll(selector) || []);`
* Si ningún elemento cumple con la condición, jQuery retornaría `[]` mientras la API DOM retornaría `null`. Nótese el NullPointerException. Se puede usar `||` para establecer el valor por defecto al no encontrar elementos, como en `document.querySelectorAll(selector) || []`> Nota: document.querySelector y document.querySelectorAll son bastante LENTOS, procuree utilizar getElementById, document.getElementsByClassName o document.getElementsByTagName si desea obtener un mejor rendimiento.
- [1.0](#1.0) Buscar por selector
```js
// jQuery
$('selector');// Nativo
document.querySelectorAll('selector');
```- [1.1](#1.1) Buscar por Clase
```js
// jQuery
$('.class');// Nativo
document.querySelectorAll('.class');// Forma alternativa
document.getElementsByClassName('class');
``````js
// jQuery
$('#id');// Nativo
document.querySelector('#id');// Forma alternativa
document.getElementById('id');
```- [1.3](#1.3) Buscar por atributo
```js
// jQuery
$('a[target=_blank]');// Nativo
document.querySelectorAll('a[target=_blank]');
```- [1.4](#1.4) Buscar en descendientes
```js
// jQuery
$el.find('li');// Nativo
el.querySelectorAll('li');
```- [1.5](#1.5) Elementos Hermanos/Previos/Siguientes
+ Elementos hermanos
```js
// jQuery
$el.siblings();// Nativo
Array.prototype.filter.call(el.parentNode.children, (child) =>
child !== el
);
```+ Elementos previos
```js
// jQuery
$el.prev();// Nativo
el.previousElementSibling;
```+ Elementos siguientes
```js
// jQuery
$el.next();// Nativo
el.nextElementSibling;
```Retorna el elemento más cercano que coincida con la condición, partiendo desde el nodo actual hasta document.
```js
// jQuery
$el.closest(selector);// Nativo - Sólo el último, NO IE
el.closest(selector);// Nativo - IE10+
function closest(el, selector) {
const matchesSelector = el.matches || el.webkitMatchesSelector || el.mozMatchesSelector || el.msMatchesSelector;while (el) {
if (matchesSelector.call(el, selector)) {
return el;
} else {
el = el.parentElement;
}
}
return null;
}
```Obtiene los ancestros de cada elemento en el set actual de elementos que cumplan con la condición, sin incluir el actual
```js
// jQuery
$el.parentsUntil(selector, filter);// Nativo
function parentsUntil(el, selector, filter) {
const result = [];
const matchesSelector = el.matches || el.webkitMatchesSelector || el.mozMatchesSelector || el.msMatchesSelector;// Partir desde el elemento padre
el = el.parentElement;
while (el && !matchesSelector.call(el, selector)) {
if (!filter) {
result.push(el);
} else {
if (matchesSelector.call(el, filter)) {
result.push(el);
}
}
el = el.parentElement;
}
return result;
}
```+ Input/Textarea
```js
// jQuery
$('#my-input').val();// Nativo
document.querySelector('#my-input').value;
```+ Obtener el índice de e.currentTarget en `.radio`
```js
// jQuery
$('.radio').index(e.currentTarget);// Nativo
Array.prototype.indexOf.call(document.querySelectorAll('.radio'), e.currentTarget);
```- [1.9](#1.9) Contenidos de Iframe
`$('iframe').contents()` devuelve `contentDocument` para este iframe específico
+ Contenidos de Iframe
```js
// jQuery
$iframe.contents();// Nativo
iframe.contentDocument;
```+ Buscar dentro de un Iframe
```js
// jQuery
$iframe.contents().find('.css');// Nativo
iframe.contentDocument.querySelectorAll('.css');
``````js
// jQuery
$('body');// Nativo
document.body;
```- [1.11](#1.11) Obtener y establecer atributos
+ Obtener un atributo
```js
// jQuery
$el.attr('foo');// Nativo
el.getAttribute('foo');
```
+ Establecer un atributo```js
// jQuery, note que esto funciona en memoria sin cambiar el DOM
$el.attr('foo', 'bar');// Nativo
el.setAttribute('foo', 'bar');
```+ Obtener un atributo `data-`
```js
// jQuery
$el.data('foo');// Nativo
el.getAttribute('data-foo');// Nativo (Utilice `dataset` solamente si necesita dar soporte a IE 11+)
el.dataset['foo'];
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## CSS & Estilo
+ Obtener Estilo
```js
// jQuery
$el.css("color");// Nativo
// NOTA: Bug conocido, retornará 'auto' si el valor de estilo es 'auto'
const win = el.ownerDocument.defaultView;// null significa que no retorne pseudo estilos
win.getComputedStyle(el, null).color;
```+ Establecer estilo
```js
// jQuery
$el.css({ color: "#ff0011" });// Nativo
el.style.color = '#ff0011';
```+ Obtener/Establecer Estilos
Nótese que si se desea establecer múltiples estilos a la vez, se puede utilizar el método [setStyles](https://github.com/oneuijs/oui-dom-utils/blob/master/src/index.js#L194) en el paquete oui-dom-utils.
+ Agregar clase
```js
// jQuery
$el.addClass(className);// Nativo
el.classList.add(className);
```+ Quitar Clase
```js
// jQuery
$el.removeClass(className);// Nativo
el.classList.remove(className);
```+ Consultar si tiene clase
```js
// jQuery
$el.hasClass(className);// Nativo
el.classList.contains(className);
```+ Toggle class
```js
// jQuery
$el.toggleClass(className);// Nativo
el.classList.toggle(className);
```Ancho y Alto son teóricamente idénticos. Usaremos el Alto como ejemplo:
+ Alto de Ventana
```js
// alto de ventana
$(window).height();// Con scrollbar, se comporta como jQuery
window.document.documentElement.clientHeight;// Sin scrollbar
window.innerHeight;
```+ Alto de Documento
```js
// jQuery
$(document).height();// Native
const body = document.body;
const html = document.documentElement;
const height = Math.max(
body.offsetHeight,
body.scrollHeight,
html.clientHeight,
html.offsetHeight,
html.scrollHeight
);
```+ Alto de Elemento
```js
// jQuery
$el.height();// Nativo
function getHeight(el) {
const styles = window.getComputedStyle(el);
const height = el.offsetHeight;
const borderTopWidth = parseFloat(styles.borderTopWidth);
const borderBottomWidth = parseFloat(styles.borderBottomWidth);
const paddingTop = parseFloat(styles.paddingTop);
const paddingBottom = parseFloat(styles.paddingBottom);
return height - borderBottomWidth - borderTopWidth - paddingTop - paddingBottom;
}// Precisión de entero(para `border-box`, es `height - border`; con content-box`, es `height + padding`)
el.clientHeight;// Precisión de decimal(para `border-box`, es `height`; con `content-box`, es `height + padding + border`)
el.getBoundingClientRect().height;
```- [2.3](#2.3) Posición y Offset
+ Posición
Obtiene las coordenadas actuales del elemento, en relación con el padre.
```js
// jQuery
$el.position();// Nativo
{ left: el.offsetLeft, top: el.offsetTop }
```+ Offset
Obtiene las coordenadas actuales del elemento, en relación con el documento.
```js
// jQuery
$el.offset();// Nativo
function getOffset (el) {
const box = el.getBoundingClientRect();return {
top: box.top + window.pageYOffset - document.documentElement.clientTop,
left: box.left + window.pageXOffset - document.documentElement.clientLeft
}
}
```- [2.4](#2.4) Posición vertical del scroll
Obtiene la posición vertical actual de la barra de scroll para el elemento.
```js
// jQuery
$(window).scrollTop();// Nativo
(document.documentElement && document.documentElement.scrollTop) || document.body.scrollTop;
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## Manipulación DOM
Elimina el elemento del DOM
```js
// jQuery
$el.remove();// Nativo
el.parentNode.removeChild(el);
```+ Obtener Texto
Obtiene los contenidos de texto combinado del elemento, incluyendo sus decendientes.
```js
// jQuery
$el.text();// Nativo
el.textContent;
```+ Establecer Texto
Establece el contenido del elemento al texto especificado
```js
// jQuery
$el.text(string);// Nativo
el.textContent = string;
```+ Obtener HTML
```js
// jQuery
$el.html();// Nativo
el.innerHTML;
```+ Establecer HTML
```js
// jQuery
$el.html(htmlString);// Nativo
el.innerHTML = htmlString;
```Añadir elemento hijo después del último hijo del elemento padre
```js
// jQuery
$el.append('Hello World');// Nativo (string de HTML)
el.insertAdjacentHTML('beforeend', 'Hello World');// Nativo (Elemento)
el.appendChild(newEl);
```- [3.5](#3.5) Añadir al inicio
```js
// jQuery
$el.prepend('Hello World');// Nativo (String HTML)
el.insertAdjacentHTML('afterbegin', 'Hello World');// Nativo (Elemento)
el.insertBefore(newEl, el.firstChild);
```Insertar un nuevo nodo antes de los elementos seleccionados
```js
// jQuery
$newEl.insertBefore(selector);// Nativo (String HTML)
el.insertAdjacentHTML('beforebegin ', 'Hello World');// Native (Elemento)
const el = document.querySelector(selector);
if (el.parentNode) {
el.parentNode.insertBefore(newEl, el);
}
```- [3.7](#3.7) Insertar después
Insertar un nuevo nodo después de los elementos seleccionados
```js
// jQuery
$newEl.insertAfter(selector);// Nativo (String HTML)
el.insertAdjacentHTML('afterend', 'Hello World');// Nativo (Elemento)
const el = document.querySelector(selector);
if (el.parentNode) {
el.parentNode.insertBefore(newEl, el.nextSibling);
}
```Retorna `true` si coincide con el selector de la búsqueda
```js
// jQuery - Nota `is` también funciona con `funciones` o `elementos` que no veremos aquí
$el.is(selector);// Nativo
el.matches(selector);
```
- [3.9](#3.9) ClonarCrea una copia profunda del elemento
```js
// jQuery
$el.clone();// Nativo
el.cloneNode();// Para hacer copia profunda , establece como parametro `true`
```Elimina todos los nodos hijo
```js
// jQuery
$el.empty();// Nativo
el.innerHTML = '';
```Crea una estructura HTML alrededor de cada elemento
```js
');
// jQuery
$('.inner').wrap('// Nativo
Array.prototype.forEach.call(document.querySelectorAll('.inner'), (el) => {
const wrapper = document.createElement('div');
wrapper.className = 'wrapper';
el.parentNode.insertBefore(wrapper, el);
el.parentNode.removeChild(el);
wrapper.appendChild(el);
});
```Elimina los padres de una serie de elementos seleccionados del DOM
```js
// jQuery
$('.inner').unwrap();// Nativo
Array.prototype.forEach.call(document.querySelectorAll('.inner'), (el) => {
Array.prototype.forEach.call(el.childNodes, (child) => {
el.parentNode.insertBefore(child, el);
});
el.parentNode.removeChild(el);
});
```Remplaza cada elemento en una serie de elementos seleccionados con nuevo contenido.
```js
');
// jQuery
$('.inner').replaceWith('// Nativo
Array.prototype.forEach.call(document.querySelectorAll('.inner'), (el) => {
const outer = document.createElement('div');
outer.className = 'outer';
el.parentNode.insertBefore(outer, el);
el.parentNode.removeChild(el);
});
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## Ajax
+[Fetch API](https://fetch.spec.whatwg.org/) es el nuevo estándar que reemplaza a XMLHttpRequest para efectuar peticiones AJAX. Funciona en Chrome y Firefox, como también es posible usar un polyfill en otros navegadores.
Es una buena alternativa utilizar [github/fetch](http://github.com/github/fetch) en IE9+ o [fetch-ie8](https://github.com/camsong/fetch-ie8/) en IE8+, [fetch-jsonp](https://github.com/camsong/fetch-jsonp) para efectuar peticiones JSONP.
- [4.1](#4.1) Carga datos desde un servidor y coloca el HTML regresado en el elemento seleccionado.
```js
// jQuery
$(selector).load(url, completeCallback)// Nativo
fetch(url).then(data => data.text()).then(data => {
document.querySelector(selector).innerHTML = data
}).then(completeCallback)
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## Eventos
Para un reemplazo completo con namespace y delegación, utilizar https://github.com/oneuijs/oui-dom-events
- [5.0](#5.0) Document ready by `DOMContentLoaded`
```js
// jQuery
$(document).ready(eventHandler);// Nativo
// Verifica que DOMContentLoaded ya se ha completado
if (document.readyState !== 'loading') {
eventHandler();
} else {
document.addEventListener('DOMContentLoaded', eventHandler);
}
```- [5.1](#5.1) Asignar un evento con "on"
```js
// jQuery
$el.on(eventName, eventHandler);// Nativo
el.addEventListener(eventName, eventHandler);
```- [5.2](#5.2) Desasignar un evento con "off"
```js
// jQuery
$el.off(eventName, eventHandler);// Nativo
el.removeEventListener(eventName, eventHandler);
``````js
// jQuery
$(el).trigger('custom-event', {key1: 'data'});// Nativo
if (window.CustomEvent) {
const event = new CustomEvent('custom-event', {detail: {key1: 'data'}});
} else {
const event = document.createEvent('CustomEvent');
event.initCustomEvent('custom-event', true, true, {key1: 'data'});
}el.dispatchEvent(event);
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## Utilidades
La mayoría de las utilidades se encuentran en la API nativa. Otras funciones avanzadas podrían por utilidades de librerías que se centran en la consistencia y rendimiento. Se recomienda [lodash](https://lodash.com) como replazo.
- [6.1](#6.1) Utilidades Básicas
+ isArray
Determina si el lemento es un vector(array).
```js
// jQuery
$.isArray(array);// Nativo
Array.isArray(array);
```+ isWindow
Determina si el argumento en una ventana(window).
```js
// jQuery
$.isWindow(obj);// Nativo
function isWindow(obj) {
return obj !== null && obj !== undefined && obj === obj.window;
}
```+ inArray
Busca un valor específico en el array y retorna su índice (o -1 si no lo encuentra).
```js
// jQuery
$.inArray(item, array);// Nativo
array.indexOf(item) > -1;// ES6
array.includes(item);
```+ isNumeric
Determina si el argumento es un número.
Utiliza `typeof` para decidir el tipo del `type` ejemplo para mayor precisión.```js
// jQuery
$.isNumeric(item);// Nativo
function isNumeric(value) {
var type = typeof value;return (type === 'number' || type === 'string') && !Number.isNaN(value - Number.parseFloat(value));
}
```+ isFunction
Determina si el argumento es objecto función de Javascript.
```js
// jQuery
$.isFunction(item);// Nativo
function isFunction(item) {
if (typeof item === 'function') {
return true;
}
var type = Object.prototype.toString(item);
return type === '[object Function]' || type === '[object GeneratorFunction]';
}
```+ isEmptyObject
Verifica que un objeto esté vacío(contiene propiedades no enumerables).
```js
// jQuery
$.isEmptyObject(obj);// Nativo
function isEmptyObject(obj) {
return Object.keys(obj).length === 0;
}
```+ isPlainObject
Verifica si un objeto es un objeto plano (creado utilizando “{}” o “new Object”).
```js
// jQuery
$.isPlainObject(obj);// Nativo
function isPlainObject(obj) {
if (typeof (obj) !== 'object' || obj.nodeType || obj !== null && obj !== undefined && obj === obj.window) {
return false;
}if (obj.constructor &&
!Object.prototype.hasOwnProperty.call(obj.constructor.prototype, 'isPrototypeOf')) {
return false;
}return true;
}
```+ extend
Combina los contenidos de dos o mas objetos en el primer objeto.
object.assign es una API de ES6, puedes utilizar [polyfill](https://github.com/ljharb/object.assign) también.```js
// jQuery
$.extend({}, defaultOpts, opts);// Nativo
Object.assign({}, defaultOpts, opts);
```+ trim
Elimina los espacios en blanco del inicio y final de un string.
```js
// jQuery
$.trim(string);// Nativo
string.trim();
```+ map
Traslada todos los elementos en un arreglo u objeto a un nuevo arreglo de elementos.
```js
// jQuery
$.map(array, (value, index) => {
});// Nativo
array.map((value, index) => {
});
```+ each
Una función genérica de iteración, que puede ser utilizada de manera similar para iterar en objetos o arreglos.
```js
// jQuery
$.each(array, (index, value) => {
});// Nativo
array.forEach((value, index) => {
});
```+ grep
Encuentra los elementos de un arreglo que satisfacen una función filtro.
```js
// jQuery
$.grep(array, (value, index) => {
});// Nativo
array.filter((value, index) => {
});
```+ type
Determina la clase [Class] interna de Javascript de un objeto.
```js
// jQuery
$.type(obj);// Nativo
function type(item) {
const reTypeOf = /(?:^\[object\s(.*?)\]$)/;
return Object.prototype.toString.call(item)
.replace(reTypeOf, '$1')
.toLowerCase();
}
```+ merge
Combina los contenidos de dos o mas arreglos en el primero.
```js
// jQuery
$.merge(array1, array2);// Nativo
// Pero la función concat no elimina elementos duplicados.
function merge(...args) {
return [].concat(...args)
}
```+ now
Retorna un número que representa la hora actual.
```js
// jQuery
$.now();// Native
Date.now();
```+ proxy
Toma una función y regresa una nueva que siempre tendrá un contexto particular.
```js
// jQuery
$.proxy(fn, context);// Nativo
fn.bind(context);
```+ makeArray
Convierte un objeto similar a un arreglo en un verdarero arreglo de Javascript.
```js
// jQuery
$.makeArray(arrayLike);// Nativo
Array.prototype.slice.call(arrayLike);// ES6
Array.from(arrayLike);
```Verifica si un elemento del DOM es descendiente de otro elemento del DOM.
```js
// jQuery
$.contains(el, child);// Nativo
el !== child && el.contains(child);
```Ejecuta el mismo código Javascript de manera global.
```js
// jQuery
$.globaleval(code);// Nativo
function Globaleval(code) {
const script = document.createElement('script');
script.text = code;document.head.appendChild(script).parentNode.removeChild(script);
}// Utilzando eval, pero el contexto de eval es el actual, el contexto de $.Globaleval es global.
eval(code);
```+ parseHTML
Parsea un string ien un arreglo de nodos DOM.
```js
// jQuery
$.parseHTML(htmlString);// Nativo
function parseHTML(string) {
const context = document.implementation.createHTMLDocument();// Se establece la base href para el documento creado, así todos los elementos parseados con URLs
// estarán basados en ña URL del documento
const base = context.createElement('base');
base.href = document.location.href;
context.head.appendChild(base);context.body.innerHTML = string;
return context.body.children;
}
```+ parseJSON
Toma un string de JSON *bien formado* y retorna el valor resultante de Javascript.
```js
// jQuery
$.parseJSON(str);// Native
JSON.parse(str);
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## Promesas
Una promesa, representa el resultado eventual de una operación asíncrona. jQuery tiene su propio sistema para utilizar promesas. JavaScript nativo implementa una ligera y mínima API para utilizar promesas de acuerdo con la especificación [Promises/A+](http://promises-aplus.github.io/promises-spec/).
- [7.1](#7.1) done, fail, always
`done` se llama cuando una promesa se resuelve, `fail` se llama cuando una promesa es rechazada, `always` se llama cuando una promesa no ha sido resuelta o rechazada.
```js
// jQuery
$promise.done(doneCallback).fail(failCallback).always(alwaysCallback)// Nativo
promise.then(doneCallback, failCallback).then(alwaysCallback, alwaysCallback)
````when` se utiliza para manipular múltiples promesas. Se resolverá cuando todas las promesas sean resueltas y se rechazará si alguna es rechazada.
```js
// jQuery
$.when($promise1, $promise2).done((promise1Result, promise2Result) => {
});// Nativo
Promise.all([$promise1, $promise2]).then([promise1Result, promise2Result] => {});
```Deferred es una manera de crear promesas.
```js
// jQuery
function asyncFunc() {
const defer = new $.Deferred();
setTimeout(() => {
if(true) {
defer.resolve('some_value_computed_asynchronously');
} else {
defer.reject('failed');
}
}, 1000);return defer.promise();
}// Nativo
function asyncFunc() {
return new Promise((resolve, reject) => {
setTimeout(() => {
if (true) {
resolve('some_value_computed_asynchronously');
} else {
reject('failed');
}
}, 1000);
});
}// Deferred
function defer() {
const deferred = {};
const promise = new Promise((resolve, reject) => {
deferred.resolve = resolve;
deferred.reject = reject;
});deferred.promise = () => {
return promise;
};return deferred;
}function asyncFunc() {
const defer = defer();
setTimeout(() => {
if(true) {
defer.resolve('some_value_computed_asynchronously');
} else {
defer.reject('failed');
}
}, 1000);return defer.promise();
}
```**[⬆ volver al inicio](#tabla-de-contenidos)**
## Animaciones
- [8.1](#8.1) Mostrar y ocultar
```js
// jQuery
$el.show();
$el.hide();// Native
// Para mas detalles acerca del método show, refierase a https://github.com/oneuijs/oui-dom-utils/blob/master/src/index.js#L363
el.style.display = ''|'inline'|'inline-block'|'inline-table'|'block';
el.style.display = 'none';
```Muestra u oculta el elemento
```js
// jQuery
$el.toggle();// Nativo
if (el.ownerDocument.defaultView.getComputedStyle(el, null).display === 'none') {
el.style.display = ''|'inline'|'inline-block'|'inline-table'|'block';
} else {
el.style.display = 'none';
}
```- [8.3](#8.3) FadeIn & FadeOut
```js
// jQuery
$el.fadeIn(3000);
$el.fadeOut(3000);// Nativo
el.style.transition = 'opacity 3s';
// fadeIn
el.style.opacity = '1';
// fadeOut
el.style.opacity = '0';
```Ajusta la opacidad del elemento
```js
// jQuery
$el.fadeTo('slow',0.15);
// Nativo
el.style.transition = 'opacity 3s'; // assume 'slow' equals 3 seconds
el.style.opacity = '0.15';
```Muestra u oculta el emento animando su opacidad.
```js
// jQuery
$el.fadeToggle();// Nativo
el.style.transition = 'opacity 3s';
const { opacity } = el.ownerDocument.defaultView.getComputedStyle(el, null);
if (opacity === '1') {
el.style.opacity = '0';
} else {
el.style.opacity = '1';
}
```- [8.6](#8.6) SlideUp & SlideDown
```js
// jQuery
$el.slideUp();
$el.slideDown();// Nativo
const originHeight = '100px';
el.style.transition = 'height 3s';
// slideUp
el.style.height = '0px';
// slideDown
el.style.height = originHeight;
```Muestra u oculta el elemento con una animación de deslizamiento.
```js
// jQuery
$el.slideToggle();// Nativo
const originHeight = '100px';
el.style.transition = 'height 3s';
const { height } = el.ownerDocument.defaultView.getComputedStyle(el, null);
if (parseInt(height, 10) === 0) {
el.style.height = originHeight;
}
else {
el.style.height = '0px';
}
```Realiza una animación personalizada de un conjunto de propiedades CSS.
```js
// jQuery
$el.animate({ params }, speed);// Nativo
el.style.transition = 'all ' + speed;
Object.keys(params).forEach((key) => {
el.style[key] = params[key];
});
```## Alternativas
* [Quizá no necesites jQuery](http://youmightnotneedjquery.com/) - Ejemplos de como hacer un evento común, un elemento, ajax, etc, con Javascript puro.
* [npm-dom](http://github.com/npm-dom) y [webmodules](http://github.com/webmodules) - Organizaciones en las puedes encontrar módulos individuales del DOM en NPM.## Navegadores soportados
![Chrome][chrome-image] | ![Firefox][firefox-image] | ![IE][ie-image] | ![Opera][opera-image] | ![Safari][safari-image]
--- | --- | --- | --- | --- |
Última ✔ | Última ✔ | 10+ ✔ | Última ✔ | 6.1+ ✔ |# Licencia
MIT
[chrome-image]: https://raw.github.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png
[firefox-image]: https://raw.github.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png
[ie-image]: https://raw.github.com/alrra/browser-logos/master/src/archive/internet-explorer_9-11/internet-explorer_9-11_48x48.png
[opera-image]: https://raw.github.com/alrra/browser-logos/master/src/opera/opera_48x48.png
[safari-image]: https://raw.github.com/alrra/browser-logos/master/src/safari/safari_48x48.png