<!--
* Name: Таймер обратного отсчета в ZeroBlock
* Description: Скрипт добавляет вашу таймер в текстовое поле или кнопку в ZeroBlock
* Author: ANKU
* URL: https://anku.one/zero-timer
-->
<script>
const DAYS_SEPARATOR = 'd '; // Разделитель после дней
const HOUR_SEPARATOR = 'h '; // Разделитель после часов
const MINUTES_SEPARATOR = 'm '; // Разделитель после минут
const SECONDS_SEPARATOR = 's'; // Разделитель после секунд
// Не менять код ниже этого комментария
function initializeMyTimerZero(){function e(){var e,t,r,o;let n=document.querySelector(".uc-zero-timer .t415__days").textContent,i=document.querySelector(".uc-zero-timer .t415__hours").textContent,c=document.querySelector(".uc-zero-timer .t415__minutes").textContent,l=document.querySelector(".uc-zero-timer .t415__seconds").textContent,u=(e=n,t=i,r=c,o=l,e+DAYS_SEPARATOR+t+HOUR_SEPARATOR+r+MINUTES_SEPARATOR+o+SECONDS_SEPARATOR);document.querySelectorAll(".zero-timer .tn-atom").forEach(e=>{e.textContent=u})}e(),setInterval(e,1e3),console.log("Хочешь скрипт таймера в ZeroBlock для Tilda, смотри эту статью: https://anku.one/zero-timer ")}"loading"!==document.readyState?initializeMyTimerZero():document.addEventListener("DOMContentLoaded",function(){initializeMyTimerZero()});
</script>
<style>.uc-zero-timer {display: none!important;}</style>