common.js
2.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/***禁止滑动***/
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);
//
// })