拷贝漫画去广告🚫、加速访问🚀、并排布局📖、图片高度自适应↕️、辅助翻页↔️、页码显示⏱、侧边目录栏📑、暗夜模式🌙、章节评论💬
< Opinie na ☄️拷贝漫画增强☄️
做了个切换/退出全屏自动定位回之前停留的页码的功能。之前因为分辨率变化会有些错位,在页数多的漫画中就很明显,加上这个功能就不用自己去记忆之前看到哪一页了。
先加个函数:
function scrollCurrent(id) { let img_list = document.querySelectorAll('.inner_img'); app.cur_lock++; app.cur_id = id; setTimeout(function () { app.cur_lock--; }, 500); // TODO $("html").stop(); $("html").animate({ scrollTop: img_list[id - 1].offsetTop }, 500); }
然后全屏的方法里改成这样:
switch_full: function () { let old_cur_id = app.cur_id; this.full = !this.full; if (this.full) { document.documentElement.requestFullscreen(); } else { document.exitFullscreen(); } setTimeout(function () { scrollCurrent(old_cur_id) }, 250); }
Zaloguj się, by odpowiedzieć.
做了个切换/退出全屏自动定位回之前停留的页码的功能。之前因为分辨率变化会有些错位,在页数多的漫画中就很明显,加上这个功能就不用自己去记忆之前看到哪一页了。
先加个函数:
然后全屏的方法里改成这样: