common.js 2.0 KB
/***禁止滑动***/
function stop() {
    document.body.style.overflow = 'hidden';
    // document.addEventListener("touchmove", mo, false); //禁止页面滑动
    $("body").on("touchmove",function(event){
        event.preventDefault();
    }, false)
}

/***取消滑动限制***/
function move() {
    document.body.style.overflow = ''; //出现滚动条
    // document.removeEventListener("touchmove", mo, false);
    $("body").off("touchmove");
}
function toast(that) {
    var $toast = $('#toast');
    stop()
    $toast.find(".weui-toast__content").html(that)
    if ($toast.css('display') != 'none') return;
    $toast.fadeIn(100);
    setTimeout(function () {
        $toast.fadeOut(100);
        move()
    }, 2000);
}

////时间戳的倒计时
//$('.order_lists_content').append(html);
//          $('.uptime').each(function () {
//              var active_time = parseInt($(this).attr('data-time'));
//              var endtime = Date.parse(new Date(active_time));
//              var _this = $(this)
//              var init = setInterval(function () {
//                  var nowtime = Date.parse(new Date())
//                  var time = endtime - nowtime;
//                  if (time > 0) {
//                      var hour = parseInt(time / 1000 / 60 / 60);
//                      var minute = parseInt(time / 1000 / 60 % 60);
//                      var seconds = parseInt(time / 1000 % 60);
//                      if (hour == 0 && minute == 0 && seconds == 0) {
//                          _this.html(endtime);
//                          _this.removeClass('uptime');
//                          _this.parent().parent().parent().append('<div class="sign"><img src="img/sign.png"></div>');
//                      } else {
//                          _this.html(hour + ':' + add0(minute) + ':' + add0(seconds))
//                      }
//                  } else {
//                      _this.html("00时00分");
//                    
//                  }
//              }, 1000);
//
//          })