Код: Выделить всё
<!--Библиотека VORON--><!--Видео с автоплеем в зеро https://voron-dev.ru/video-->
<script>
t_onReady(function () {
t_onFuncLoad('t396_init', function () {
document.querySelectorAll('[data-elem-type="video"] video').forEach(function (element) {
if (element.autoplay) {
element.removeAttribute('autoplay', 'false');
element.setAttribute('muted', 'true');
element.setAttribute('autoplay', 'true');
element.setAttribute('playsinline', 'true');
}
if (element.loop) element.setAttribute('loop', 'true');
if (element.controls) element.setAttribute('controls', 'true');
})
})
})
</script>