Показать сообщение отдельно
  #11 (permalink)  
Старый 10.01.2018, 13:37
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,129

vladchv,
$(function() {
  var now = new Date,
      start = new Date(now.getFullYear(), now.getMonth(), now.getDate(), 19),
      end = new Date(now.getFullYear(), now.getMonth(), now.getDate()+1, 9);
  if (now >= start && now <= end) {
    if (localStorage.getItem("check") == null) {
      showModal();
    }
  }
  function showModal() {
    localStorage.setItem("check", true);
    $("#overlay").fadeIn(400, function() {
      $("#modal_form").css("display", "block").animate({opacity:1, top:"50%"}, 200);
    });
  }
  $("#modal_close, #overlay").click(function() {
    $("#modal_form").animate({opacity:0, top:"45%"}, 200, function() {
      $(this).css("display", "none");
      $("#overlay").fadeOut(400);
    });
  });
});
Ответить с цитированием