Contenido
Fórmula 1
Chicharito reta a Checo Pérez: “Yo sería mejor piloto que tú jugador de futbol”
Luego del Gran Premio de Las Vegas, Checo se refirió al delantero comparándolo con su desempeño en la Fórmula 1, por lo que Chicharito respondió: “¿Quién tendría más práctica? Yo que manejo todos los días un coche, aunque no sea Fórmula 1, o Checo que juega una vez cada seis meses futbol”.
// ------------------------------------------------------------------------------------------------------------------------------- // 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).– El futbolista Javier “El Chicharito” Hernández retó al automovilista de la Fórmula 1 Sergio “Checo” Pérez, después de que éste se comparara con él por ser buen jugador de futbol.
“Checo no es mal jugador de futbol, no es malo, pero a ver, no soy mal piloto tampoco. Estaría cool un día hacerlo, que yo manejara un coche de Formula 1 y a él en un entrenamiento en mi próximo equipo en el que esté, invitarlo y que entrene, estaría cool y ver quién lo hace mejor”, añadió en un mensaje en internet.
Y es que Checo Pérez, durante una entrevista con Broadcast Boys en el Gran Premio de Las Vegas, hace unas semanas, se refirió al delantero comparándolo con su desempeño en la Fórmula 1.
“Yo en la MLS realmente soy buen delantero, me gusta Chicharito porque somos buenos jugadores, pero siempre sabemos dónde ponernos para poder hacer gol”.
En internet, El Chicharito respondió: “Checo no juega futbol muy seguido por más que lo intente y lo hace. Yo no manejo coches Fórmula 1 muy seguido, obvio, nunca he manejado uno, por cierto, nunca.
“Pero, a ver, ¿quién tendría más práctica? Yo que manejo todos los días un coche, aunque no sea de Fórmula 1, o Checo que sólo juega una vez cada seis meses futbol”, indicó el futbolista que, por el momento, no tiene equipo.
Chicha ?? vs ChecouD83CuDFCE?
¿Aceptas el reto @SChecoPerez? #chicharito #ch14 #checoperez #f1 #soccer pic.twitter.com/Vz2BA4QcFr— Javier “Chicharito” Hernandez (@CH14_) November 27, 2023
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.