Sourcecode
ad.html
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>Live Partikel Dings</title>
</head>
<body style="margin: 0">
<img height="100%" id="particle" onclick="window.open(
'https://liveparticle.tmcz.de/',
'_blank'
);" src="image.php&ad=1" width="100%">
<script>
let i = 0;
setInterval(
function () {
let particleImage = document.getElementById("particle");
particleImage.src = "https://liveparticle.tmcz.de/image.php?a=" + i + "&ad";
i++;
}, 100);</script>
</body>
</html>