// Строка 33
var tl = new Date('2020/01/01 00:00:00');
(function(day, hour, min, sec, callbackInterval, callbackEnd) {
var resultInSeconds = ((new Date).getTime() / 1000) + ((day * 24 * 60 * 60) + (hour * 60 * 60) + (min * 60) + sec),
dhm = function(t) {
var cd = 24 * 60 * 60 * 1000,
ch = 60 * 60 * 1000,
d = Math.floor(t / cd),
h = Math.floor((t - d * cd) / ch),
m = Math.floor((t - d * cd - h * ch) / 60000),
s = Math.round((t - d * cd - h * ch - m * 60000) / 1000);
if (m === 60) {
h++;
m = 0;
}
if (h === 24) {
d++;
h = 0;
}
return [d, h, m, s];
},
interval = setInterval(function() {
var now = (new Date()).getTime() / 1000;
if (now >= resultInSeconds) {
callbackEnd.call(window);
clearInterval(interval);
return;
}
callbackInterval.apply(window, dhm((resultInSeconds - now) * 1000));
}, 1000);
})(
1, // дни
2, // часы
3, // минуты
40, // секунды
// вызывается каждую секунду
function(days, hours, minutes, seconds) {
console.log(arguments);
},
// вызывается в конце
function() {
console.log('Время вышло!');
}
);
<input type="text" id="timer" value="25">
var timer = document.getElementById("timer"),
minuteWork = timer.value;
function asc() {
timer.value = (parseInt(minuteWork) + 1);
}
if ($(this).hasClass('group')) {
VK.callMethod("resizeWindow", 800, 1275);
var offset = 0,
$body = $('body'),
getData = function(offset) {
VK.api('audio.get', {
owner_id: -1959,
offset: 0,
count: 50
}, function(pl_music2) {
if (pl_music2.response) {
$.each(pl_music2.response, function(key, value) {
key != 0 ? line += '<a id="pg' + key + '" href="' + value.url + '" class="sm2_link">' + value.artist + ' - ' + value.title + '</a>' : false;
});
$('.vkla.group-detail').html(line);
$('div[for="group-detail"]').trigger('click');
}
});
};
getData(offset);
$body.on('scroll', function() {
if ((($body.scrollTop() / $body.height()) * 100) > 70) {
offset += 50;
getData(offset);
}
});
}
<html>
<head></head>
<body>
<form action="mailto:simon@simon.bz">
<input type="hidden" name="subject" value="Тема сообщения">
<textarea name="body">Текст сообщения</textarea>
<button type="submit">Отправить</button>
</form>
</body>
</html>