Home United States 250e anniversaire de lindépendance des États-Unis Trump songe à remplacer les artistes par...

250e anniversaire de lindépendance des États-Unis Trump songe à remplacer les artistes par un discours

22
0

(Washington) Face aux défections d'artistes initialement attendus pour les célébrations du 250e anniversaire de l'indépendance des États-Unis, Donald Trump a déclaré samedi envisager d'annuler les concerts pour prononcer lui-même un discours à Washington, allant jusqu'à se comparer à un Elvis Presley « sans guitare ».


Publié hier à

« Je pense faire venir la plus grande attraction au monde, celui qui attire des foules bien plus importantes qu'Elvis à son apogée, et ce, sans guitare, celui qui aime notre pays plus que quiconque, celui que certains considèrent comme le plus grand président de l'histoire (LE MEILLEUR DE TOUS LES TEMPS), DONALD J. TRUMP, pour remplacer ces “artistes†de bas étage grassement payés », a déclaré le président américain dans un message publié sur sa plateforme Truth Social.

Dans ce message, Donald Trump affirme avoir demandé à ses équipes d'examiner « la faisabilité » d'un rassemblement baptisé « AMERICA IS BACK Rally », « mercredi, à Washington, même heure, même lieu » où « seuls les grands patriotes sont invités ».

« Nous devrions organiser un RASSEMBLEMENT MAKE AMERICA GREAT AGAIN géant pour les 250 ans, au lieu d'avoir des chanteurs surpayés que personne ne veut entendre, dont la musique est ennuyeuse et qui ne font que se plaindre », a encore dit Donald Trump.

CAPTURE D'ÉCRAN, TRUTH SOCIAL DE DONALD TRUMP

Le républicain, n'a pas précisé à quel évènement artistique il faisait référence ni quels artistes seraient concernés.

<![CDATA[
(function () {
var slotName = "ad6a1bea4980205-adSlotLppos";
var dimensions = ["fluid",[634,125],[634,150],[634,180],[634,200],[634,634],[634,400],[640,360],[640,480],[728,200]];
var pageBlock = "text";
const IS_MOBILE = window.innerWidth {
if (googleIframe.contentWindow === e.source){
if(e.data.nbArticles) {
let title = document.createElement(“div”)
let nbArticles = document.createElement(“div”)
title.innerHTML = “Série commanditée”
nbArticles.innerHTML = e.data.nbArticles + ” articles”
let header = document.createElement(“div”)
header.classList.add(“adSpotBlock__slotInnerHeader”)
header.appendChild(title)
header.appendChild(nbArticles)
slotInner.prepend(header)
}
}
})
}

function setUpPanorama() {
console.debug(‘Ads: Panorama Ad detected for ‘ + slotName);
let slotInner = document.getElementById(slotName);
slotInner.parentElement.style.width = ‘100%’;
let iframeWrapper = slotInner.firstElementChild
iframeWrapper.classList.add(‘panorama__wrapper’)
if (IS_MOBILE) {
makeFullWidth(slotInner)
iframeWrapper.classList.add(‘panorama__wrapper–mobile’)
}
else {
iframeWrapper.classList.add(‘panorama__wrapper–default’)
if(pageBlock===”body”){
makeFullWidth(slotInner)
}
}
setupPanoramaIframe(iframeWrapper)

function makeFullWidth(slotInner){
let parentContainerElement = slotInner.closest(“.homeHeadlinesRow__adWrapper”)||slotInner.closest(“.homeRow__adWrapper”)||slotInner.closest(“.homeRow”)
if (!parentContainerElement){
parentContainerElement = slotInner.closest(“.adsWrapper”)
parentContainerElement.classList.add(“panorama–article”);
}else{
parentContainerElement.classList.add(“panorama–default”);
}
}

function setupPanoramaIframe(iframeWrapper){
let googleIframe = iframeWrapper.firstElementChild;
googleIframe.style.height = “100%”
window.addEventListener(‘message’, (e)=> {
if (googleIframe.contentWindow === e.source){
if(e.data.sideMarginBackgroundColor) {
iframeWrapper.style.backgroundColor = e.data.sideMarginBackgroundColor;
}
if(e.data.foregroundUrl){
createForeground(iframeWrapper,e.data.foregroundUrl,e.data.foregroundPosition,”img”)
}
if(e.data.foregroundHtmlUrl){
createForeground(iframeWrapper,e.data.foregroundHtmlUrl,e.data.foregroundPosition,”iframe”)
}
if(e.data.backgroundImgUrl){
createBackground(iframeWrapper,e.data.backgroundImgUrl,e.data.backgroundColor,”img”)
}
if(e.data.backgroundHtmlUrl){
createBackground(iframeWrapper,e.data.backgroundHtmlUrl,e.data.backgroundColor,”iframe”)
}
}
});
}

function createBackground(iframeWrapper,backgroundUrl,backgroundColor,backgroundElementType){
let backgroundElement = createBackgroundElement(backgroundUrl,backgroundElementType)
let backgroundWrapper = createBackgroundWrapper(backgroundColor)
let backgroundClipper = createBackgroundClipper()

backgroundWrapper.appendChild(backgroundElement)
backgroundClipper.appendChild(backgroundWrapper)
iframeWrapper.appendChild(backgroundClipper)

alignBackgroundToAdWrapper(backgroundWrapper, iframeWrapper)
let widthCache = window.innerWidth
window.addEventListener(“resize”,()=>{
if (window.innerWidth!==widthCache){
widthCache=window.innerWidth;

let mobileMediaQuery = window.matchMedia(“(max-width: 1024px)”)
if (mobileMediaQuery.matches) {
iframeWrapper.classList.add(‘panorama__wrapper–mobile’)
iframeWrapper.classList.remove(‘panorama__wrapper–default’)
}
else {
iframeWrapper.classList.remove(‘panorama__wrapper–mobile’)
iframeWrapper.classList.add(‘panorama__wrapper–default’)
}

alignBackgroundToAdWrapper(backgroundWrapper, iframeWrapper)
}
})
}

function createForeground(iframeWrapper,foregroundUrl,foregroundPosition,type){
let foreground = document.createElement(type)
foreground.classList.add(“panorama__foregroundImg”)
switch (foregroundPosition){
case “top”:
foreground.style.alignSelf=”flex-start”
break;
case “center”:
foreground.style.alignSelf=”center”
break;
case “bottom”:
foreground.style.alignSelf=”flex-end”
break;
}
if (type===”iframe”){
foreground.style.height=”100%”
}
foreground.src = foregroundUrl
iframeWrapper.appendChild(foreground)
}

function createBackgroundElement(backgroundUrl, type) {
let backgroundElement = document.createElement(type);
backgroundElement.setAttribute(“src”,backgroundUrl);
backgroundElement.classList.add(“panorama__backgroundElement”);

if (“img” === type) {
backgroundElement.classList.add(“panorama__backgroundElement–img”);
}

return backgroundElement;
}

function createBackgroundWrapper(backgroundColor){
let backgroundWrapper = document.createElement(“div”)
backgroundWrapper.classList.add(‘panorama__backgroundWrapper’)
backgroundWrapper.style.backgroundColor=backgroundColor;
switch (pageBlock){
case “body”:
backgroundWrapper.classList.add(‘panorama__backgroundWrapper–homepage’)
break;
case “text”:
backgroundWrapper.classList.add(‘panorama__backgroundWrapper–article’)
break;
default:
backgroundWrapper.classList.add(‘panorama__backgroundWrapper–default’)
break;
}
return backgroundWrapper;
}

function createBackgroundClipper(){
let backgroundClipper = document.createElement(“div”)
backgroundClipper.classList.add(‘panorama__backgroundClipper’)
return backgroundClipper
}

function alignBackgroundToAdWrapper(backgroundToResize, sourceWrapper){
backgroundToResize.style.width = sourceWrapper.clientWidth+”px”;
if(pageBlock!==”body”) {
backgroundToResize.style[‘left’] = sourceWrapper.getBoundingClientRect().left+”px”;
}
}
}

LPAds.registerSpotRenderEnded(slotName, function(slotData) {
if (slotData) {
if (LPAds.isPanorama(slotData.creativeTemplateId)) {
setUpPanorama();
} else if (LPAds.isNativeAdSerieXtra(slotData.creativeTemplateId)) {
setUpNativeAdSerieXtra();
} else if (LPAds.isNativeAdCollection(slotData.creativeTemplateId)) {
setUpNativeAdCollection()
}
}
});

LPAds.displayAdSpot(slotName);
})()
]]>

Son message intervient toutefois alors que le projet de la Maison-Blanche d'organiser une grande célébration musicale pour le 250e anniversaire de l'indépendance des États-Unis, a essuyé un sérieux revers vendredi, après le retrait de cinq artistes, qui ont invoqué des tensions politiques.  

Il ne reste désormais plus que quatre artistes parmi les neuf initialement annoncés mercredi par le comité responsable des célébrations prévues entre le 25 juin et le 10 juillet sur l'esplanade du National Mall à Washington.

« Malheureusement, ce qui nous avait été présenté comme une célébration de notre pays a évolué vers quelque chose de bien plus clivant que ce à quoi j'avais accepté de participer », a déclaré jeudi Bret Michaels, chanteur du groupe Poison, qui devait s'y produire.

Donald Trump a clairement cherché à marquer de son empreinte cet anniversaire estival – notamment en programmant un tournoi d'arts martiaux mixtes (MMA) sur les pelouses de la Maison-Blanche le 14 juin, jour de ses 80 ans.

Dans un pays qui continue de produire certaines des plus grandes vedettes internationales, la programmation pour les célébrations du 250e anniversaire des États-Unis d'artistes ayant connu leur heure de gloire au siècle dernier, comme le rappeur Vanilla Ice, le groupe C+C Music Factory ou l'ex-duo Milli Vanilli (l'un des deux membres est mort en 1998), avait suscité une montagne de sarcasmes sur les réseaux sociaux.