mirror of
https://github.com/torappinfo/uweb.git
synced 2024-08-14 23:54:59 +00:00
rebuilding site Thu Sep 24 03:43:39 PM CST 2020
This commit is contained in:
parent
f728d86550
commit
b83f8cbf96
1 changed files with 21 additions and 6 deletions
|
@ -41,16 +41,30 @@ function is_same_size_position(ele1, ele2) {
|
||||||
function find_top_wrap_ele(ele) {
|
function find_top_wrap_ele(ele) {
|
||||||
let origE = ele;
|
let origE = ele;
|
||||||
let wrap = ele;
|
let wrap = ele;
|
||||||
while (ele.tagName !== 'BODY') {
|
do {
|
||||||
ele = ele.parentElement;
|
ele = ele.parentElement;
|
||||||
if (is_same_size_position(wrap, ele)) {
|
if (is_same_size_position(wrap, ele)) {
|
||||||
wrap = ele;
|
wrap = ele;
|
||||||
}
|
}
|
||||||
|
}while (ele.tagName !== 'BODY');
|
||||||
|
|
||||||
|
if(wrap == origE) {
|
||||||
|
wrap = document.createElement('div');
|
||||||
|
origE.parentElement.insertBefore(wrap, origE);
|
||||||
|
wrap.append(origE);
|
||||||
}
|
}
|
||||||
if(wrap == origE) wrap = origE.parentElement;
|
|
||||||
return wrap;
|
return wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function fullscreen2Element(ele) {
|
||||||
|
if (document.fullscreen) {
|
||||||
|
let curFS = document.fullscreenElement;
|
||||||
|
if(curFS.tagName === 'VIDEO') {
|
||||||
|
document.exitFullscreen();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function is_parent(ele, parent) {
|
function is_parent(ele, parent) {
|
||||||
while (ele.tagName !== 'BODY' &&
|
while (ele.tagName !== 'BODY' &&
|
||||||
ele !== parent && ele.parentElement !== parent) {
|
ele !== parent && ele.parentElement !== parent) {
|
||||||
|
@ -289,10 +303,10 @@ const get_video_touch_hook = (video, e) => {
|
||||||
|
|
||||||
let start_x, start_time;
|
let start_x, start_time;
|
||||||
const touch_start = e => {
|
const touch_start = e => {
|
||||||
start_x = e.touches[0].screenX;
|
start_x = e.touches[0].screenX;
|
||||||
start_time = video.currentTime;
|
start_time = video.currentTime;
|
||||||
|
|
||||||
hook_fn.start.forEach(fn => fn(e, start_time));
|
hook_fn.start.forEach(fn => fn(e, start_time));
|
||||||
};
|
};
|
||||||
if (e) {
|
if (e) {
|
||||||
setTimeout(touch_start, 0, e);
|
setTimeout(touch_start, 0, e);
|
||||||
|
@ -304,6 +318,7 @@ const get_video_touch_hook = (video, e) => {
|
||||||
const time_length = px2cm(x_distance_px) * (this.sec_1cm || 1);
|
const time_length = px2cm(x_distance_px) * (this.sec_1cm || 1);
|
||||||
|
|
||||||
hook_fn.move.forEach(fn => fn(e, start_time, x_distance_px, time_length));
|
hook_fn.move.forEach(fn => fn(e, start_time, x_distance_px, time_length));
|
||||||
|
fullscreen2Element(top_wrap);
|
||||||
};
|
};
|
||||||
|
|
||||||
const touch_end = e => {
|
const touch_end = e => {
|
||||||
|
|
Loading…
Reference in a new issue