Contenido
Cine
Joker 2: así es el trailer que muestra su encuentro con Harley Quinn (Video)
Se vuelve tendencia en redes sociales el hashtag #JokerFolieADeux con el primer promocional de la secuela del éxito de 2019, protagonizado por Joaquin Phoenix y Lady Gaga
// ------------------------------------------------------------------------------------------------------------------------------- // PHOTOSWIPE
var initPhotoSwipeFromDOM = function(gallerySelector) {
// parse slide data (url, title, size ...) from DOM elements // (children of gallerySelector) var parseThumbnailElements = function(el) { var thumbElements = el.childNodes, numNodes = thumbElements.length, items = [], figureEl, linkEl, size, item;
for(var i = 0; i element
// include only element nodes if(figureEl.nodeType !== 1) { continue; }
linkEl = figureEl.children[0]; // element
size = linkEl.getAttribute('data-size').split('x');
// create slide object item = { src: linkEl.getAttribute('href'), w: parseInt(size[0], 10), h: parseInt(size[1], 10) };
if(figureEl.children.length > 1) {
//
if(linkEl.children.length > 0) { // thumbnail element, retrieving thumbnail url item.msrc = linkEl.children[0].getAttribute('src'); }
item.el = figureEl; // save link to element for getThumbBoundsFn items.push(item); }
return items; };
// find nearest parent element var closest = function closest(el, fn) { return el && ( fn(el) ? el : closest(el.parentNode, fn) ); };
// triggers when user clicks on thumbnail var onThumbnailsClick = function(e) { e = e || window.event; e.preventDefault ? e.preventDefault() : e.returnValue = false;
var eTarget = e.target || e.srcElement;
// find root element of slide var clickedListItem = closest(eTarget, function(el) { return (el.tagName && el.tagName.toUpperCase() === 'FIGURE'); });
if(!clickedListItem) { return; }
// find index of clicked item by looping through all child nodes // alternatively, you may define index via data- attribute var clickedGallery = clickedListItem.parentNode, childNodes = clickedListItem.parentNode.childNodes, numChildNodes = childNodes.length, nodeIndex = 0, index;
for (var i = 0; i = 0) { // open PhotoSwipe if valid index found openPhotoSwipe( index, clickedGallery ); } return false; };
// parse picture index and gallery index from URL (#&pid=1&gid=2) var photoswipeParseHash = function() { var hash = window.location.hash.substring(1), params = {};
if(hash.length getThumbBoundsFn section of documentation for more info var thumbnail = items[index].el.getElementsByTagName('img')[0], // find thumbnail pageYScroll = window.pageYOffset || document.documentElement.scrollTop, rect = thumbnail.getBoundingClientRect();
return {x:rect.left, y:rect.top + pageYScroll, w:rect.width}; }
};
// PhotoSwipe opened from URL if(fromURL) { if(options.galleryPIDs) { // parse real index when custom PIDs are used // http://photoswipe.com/documentation/faq.html#custom-pid-in-url for(var j = 0; j
CIUDAD DE MÉXICO (apro).— Warner Bros publicó este martes el primer tráiler de la secuela Joker: Folie à Deux, protagonizada de nueva cuenta por Joaquin Phoenix, quien ganó el Oscar por interpretar al villano de los comics de Batman en la película de 2019, y que en esta ocasión es acompañado por la cantante Lady Gaga en el papel de Harley Quinn.
La película llegará a los cines de Estados Unidos el 4 de octubre de 2024.
Además de difundirlo en redes sociales, el estudio reveló el tráiler durante su presentación en el CinemaCon en Las Vegas.
En el tráiler se ve el encuentro de los personajes interpretados por Phoenix y Gaga durante su encuentro en el asilo Arkham. Luego se les ve a ambos bailando mientras suena What the world needs now Is love” de Burt Bacharach.
“No soy nadie. No he hecho nada con mi vida como tú”, le dice Harley Quinn a Joker, quien simula dispararse en la cabeza con una pistola en el dedo.
¿Qué ha cambiado? “Ya no estoy solo”, dice Joker.
He's not alone anymore. Joker: Folie à Deux – only in theaters and @IMAX, October 4. #JokerMovie #FilmedForIMAX pic.twitter.com/cOx0hZIX8g
— Joker Movie (@jokermovie) April 10, 2024
En la escena final, Harley Quinn visita al Joker en la cárcel dibujándole con lápiz labial una sonrisa sobre el cristal. “El ya no estará solo”, dice la frase que anuncia el trailer en X (Twitter).
La cinta nuevamente es dirigida por Todd Philips.
La publicación del trailer hizo que en X se volviera tendencia el hashtag #JokerFolieADeux.
Comentarios
Otras Noticias
// Obtener todos los elementos con clase .col-md-12 var colElements = document.querySelectorAll('.col-md-12');
// Iterar sobre cada elemento colElements.forEach(function(element) { // Verificar si tiene un hijo inmediato con clase .titulo-region var tituloRegion = element.querySelector('.titulo-region');
if (tituloRegion) { // Agregar la clase .is-sticky al elemento padre element.classList.add('is-sticky'); } });
// Obtener el elemento article dentro de .fila-especial-v2 .p50 var articleElement = document.querySelector('.home .fila-especial-v2 .p50 article');
// Obtener el texto del elemento .z-foto .bajada p var bajadaText = articleElement.querySelector('.z-foto .bajada p').textContent;
// Crear un nuevo elemento para mostrar el texto obtenido var textoElement = document.createElement('p'); textoElement.textContent = bajadaText;
// Obtener el elemento .z-txt .titulo dentro del article var tituloElement = articleElement.querySelector('.z-txt .titulo');
// Insertar el nuevo elemento al final del article articleElement.appendChild(textoElement);
Cortesía de Proceso.