<!------- перемешивает баннеры, оставляет 8 первых -------------->
<script>document.addEventListener('DOMContentLoaded', () => {
const container = document.querySelector('.banners');
if (!container) return;
const items = Array.from(container.querySelectorAll('a'));
if (items.length === 0) return;
for (let i = items.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[items[i], items[j]] = [items[j], items[i]];
}
container.innerHTML = '';
items.slice(0, 8).forEach(item => container.appendChild(item));
});</script>- Подпись автора
[html]<style>a.blackwall-signature {
width: 172px;
height: 128px;
bottom: 5px;
right: -30px;
position: absolute !important;
background: url(https://forumstatic.ru/files/001c/88/d4/69234.gif) no-repeat center / 100%;
z-index: 5;
border-bottom: none !important;
filter:brightness(1.0);
mix-blend-mode: screen;
will-change: mix-blend-mode;
transition:filter .3s ease-in-out!important;}
a.blackwall-signature:hover {filter:brightness(1.4)}
a.blackwall-signature::before {content: none!important;}</style>
<a href='https://lepidus.ru/viewtopic.php?id=6633#p276002' title='хронология' class='blackwall-signature' target='_blank'></a>[/html]







