You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
500 B

var touch = 0;
function scroll1(e,ins){
if(touch==1){
var scrollTop = e.detail.scrollTop;
ins.callMethod("scroll2", { scrollTop2: scrollTop});
;
}
}
function scroll2(e, ins) {
if(touch==2){
var scrollTop = e.detail.scrollTop;
ins.callMethod("scroll1", { scrollTop1: scrollTop });
;
}
}
function touch1(e,ins){
;
touch = 1;
}
function touch2(e, ins) {
;
touch = 2;
}
module.exports = {
scroll1: scroll1,
scroll2: scroll2,
touch1:touch1,
touch2:touch2
}