devTest

播放器滑动快进+移除弹窗/googletagmanager+整体页面缩放

  1. // ==UserScript==
  2. // @license MIT
  3. // @name devTest
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.2
  6. // @description 播放器滑动快进+移除弹窗/googletagmanager+整体页面缩放
  7. // @author You
  8. // @include /^https://www.kmbb\d+\.com.+$/
  9. // @include /^https://www.kmbbb\d+\.com.+$/
  10. // @include /^https://www.kmff\d+\.com.+$/
  11. // @include /^https://h5.kmbb\d+\.com.+$/
  12. // @include /^https://h5.kmbbb\d+\.com.+$/
  13. // @include /^https://h5.kmff\d+\.com.+$/
  14. // @include /^https://.+\.kmpp\d+\.com.+$/
  15. // @match http://re05.cc/*
  16. // @match http://re06.cc/*
  17. // @icon https://www.kmbb59.com/favicon.ico
  18. // @grant GM_setValue
  19. // @grant GM_getValue
  20. // ==/UserScript==
  21.  
  22. var LSwiperMaker = function(o){
  23.  
  24. var that = this;
  25. this.config = o;
  26. this.control = false;
  27. this.sPos = {};
  28. this.mPos = {};
  29. this.dire;
  30. // console.log('LSwiperMaker o', o);
  31.  
  32. // this.config.bind.addEventListener('touchstart', function(){ return that.start(); } ,false);
  33. // 这样不对的,event对象只在事件发生的过程中才有效;
  34. this.config.bind.addEventListener('touchstart', function(e){ return that.start(e); } ,false);
  35. this.config.bind.addEventListener('touchmove', function(e){ return that.move(e); } ,false);
  36. this.config.bind.addEventListener('touchend', function(e){ return that.end(e); } ,false);
  37.  
  38. }
  39.  
  40. LSwiperMaker.prototype.start = function(e){
  41.  
  42. var point = e.touches ? e.touches[0] : e;
  43. this.sPos.x = point.screenX;
  44. this.sPos.y = point.screenY;
  45. //document.getElementById("start").innerHTML = "开始位置是:"+this.sPos.x +" "+ this.sPos.y ;
  46. // console.log('start', this.sPos.x, this.sPos.y);
  47.  
  48. }
  49. LSwiperMaker.prototype.move = function(e){
  50.  
  51. var point = e.touches ? e.touches[0] : e;
  52. this.control = true;
  53. this.mPos.x = point.screenX;
  54. this.mPos.y = point.screenY;
  55. //document.getElementById("move").innerHTML = "您的位置是:"+this.mPos.x +" "+ this.mPos.y ;
  56.  
  57. }
  58.  
  59. LSwiperMaker.prototype.end = function(e){
  60.  
  61. this.config.dire_h && (!this.control ? this.dire = null : this.mPos.x > this.sPos.x ? this.dire = 'R' : this.dire = 'L')
  62. this.config.dire_h || (!this.control ? this.dire = null : this.mPos.y > this.sPos.y ? this.dire = 'D' : this.dire = 'U')
  63.  
  64. this.control = false;
  65. this.config.backfn(this);
  66.  
  67. }
  68.  
  69. window.LSwiperMaker = LSwiperMaker;
  70. document.addEventListener('touchmove', function (e) { e.preventDefault(); }, { passive: false });// 禁止微信touchmove冲突
  71.  
  72.  
  73.  
  74. // 注册视频播放器手指滑动监听事件-完成进度条同步前进后退的功能
  75. function initScroll(el){
  76. var a = new LSwiperMaker({
  77. bind:el,// 绑定的DOM对象
  78. dire_h:true, //true 判断左右, false 判断上下
  79. backfn:function(o){ //回调事件
  80. // console.log('o', o);
  81. // console.log(`向${o.dire}滑`);
  82. // document.getElementById("dire").innerHTML = "向"+ o.dire + "滑";
  83. let videoObj = o.config.bind
  84. let stepValue = moveStepComputed(videoObj, o);
  85. if(o.dire=="R"){
  86. // console.log("R");
  87. videoObj.currentTime = videoObj.currentTime + stepValue
  88. }else if(o.dire=="L"){
  89. videoObj.currentTime = videoObj.currentTime - stepValue
  90. }
  91. }
  92. })
  93. }
  94.  
  95. // 计算需要移动的距离
  96. function moveStepComputed(videoObj, that) {
  97. let duration = parseInt(videoObj.duration); //单个视频总时长单位秒 取整数
  98. let clientWidth = parseInt(videoObj.clientWidth); //播放器宽度
  99. let clientHeight = parseInt(videoObj.clientHeight) //播放器高度
  100.  
  101. let transverseLength = clientWidth > clientHeight ? clientWidth : clientHeight; //取宽高两值中的较大值作为 横向的长度
  102.  
  103. let moveLength = Math.abs(that.mPos.x - that.sPos.x) || 0 //移动的横向距离
  104. console.log('单次滑动距离 moveLength', moveLength);
  105.  
  106. //
  107. let stepVal = 0;
  108. let minStep = 5;
  109. let durationBoundary = 300;
  110.  
  111. // 移动 1/5 个屏幕的宽度 时间最多变化 1/10 的视频长度
  112. let xOfTransverseLength = 5;
  113. let xOfDuration = 10;
  114. let maxStep = parseInt(duration/xOfDuration);
  115.  
  116.  
  117.  
  118. // durationBoundary 视频时长边界 视频小于该值 每次滑动变化5秒
  119. // minStep 单次滑动最少变化 5秒
  120. // xOfTransverseLength 1/X个屏幕宽度
  121. // maxStep 单次滑动最大变化 duration/10 秒
  122.  
  123. if (duration < durationBoundary) {
  124. console.log('11111111视频较短,最多一次5s');
  125. stepVal = minStep;
  126. } else {
  127. if (moveLength > parseInt(transverseLength/xOfTransverseLength)) {
  128. console.log('222222222222到达滑动一次变化极限,一次', maxStep, '秒');
  129. stepVal = maxStep
  130. } else {
  131. stepVal = (moveLength/parseInt(transverseLength/xOfTransverseLength))*maxStep
  132. console.log('333333333333正常滑动距离,一次', stepVal, '秒');
  133. }
  134. }
  135. return stepVal;
  136. }
  137.  
  138.  
  139. function hideAlertDialog () {
  140. let AlertDialogElArray = document.querySelectorAll('.loginAboutPopup');
  141. if (AlertDialogElArray && AlertDialogElArray.length) {
  142. AlertDialogElArray.forEach((item, inde)=>{
  143. item.style.display = 'none';
  144. //console.log('item', item);
  145. });
  146. //console.log('loopend', AlertDialogElArray)
  147. }
  148. }
  149.  
  150. function removeTrack() {
  151. let body = document.querySelector('body');
  152. let scriptArr = document. getElementsByTagName('script'); //HTMLCollection 类数组结构 使用for可进行遍历 不可使用forEach
  153. let tempELArray = [];
  154. let checkTrackReg = /googletagmanager/ig;
  155. console.log('scriptArr', scriptArr);
  156. for(let i = 0;i < scriptArr.length;i++) {
  157. let item = scriptArr[i];
  158. let attributes = item.attributes;
  159. let innerText = item.innerText;
  160.  
  161. //移除googletagmanager
  162. if (attributes && attributes.src) {
  163. let checkRes = checkTrackReg.test(attributes.src.value);
  164. if (checkRes) {
  165. console.log('被移除掉的脚本是', item);
  166. body.removeChild(item);
  167. continue;
  168. }
  169. }
  170. }
  171. }
  172.  
  173.  
  174.  
  175. function checkUrlAddListenser() {
  176. let reg = /\/videoContent\//ig;
  177. var interval = 0;
  178. if (window.location.href) {
  179. if (reg.test(window.location.href)) {
  180. interval = setInterval(() => {
  181. //console.log('setInterval 获取元素', document.querySelector('.dplayer-video.dplayer-video-current'))
  182. if (document.querySelector('.dplayer-video.dplayer-video-current')) {
  183. initScroll(document.querySelector('.dplayer-video.dplayer-video-current'));
  184. bindBd();
  185.  
  186. clearInterval(interval);
  187. console.log('找到了对应播放器页面dom元素且绑定了滑动快进事件')
  188. }
  189. }, 3000);
  190. } else {
  191. console.log('不是视频播放页');
  192. }
  193. }
  194. }
  195.  
  196. var timer = null;
  197. // 视频的上层元素 document.querySelectorAll('.unLoginBox.dplayer') 单击不再暂停 双击暂停
  198. function bindBd () {
  199. console.log('bindBd xxxxxxxxxx');
  200. let el = document.querySelectorAll('.unLoginBox.dplayer') && document.querySelectorAll('.unLoginBox.dplayer')[0];
  201.  
  202. console.log('bindBd el', el);
  203. if (el) {
  204. let videControlPlayBtn = document.querySelectorAll('.unLoginBox.dplayer .dplayer-controller .dplayer-play-icon')[0]
  205. //el.addEventListener('click', function () {
  206. //console.log('单击');
  207. //clearTimeout(timer); //清除未执行的定时器
  208. //timer = setTimeout(function () {
  209. // console.log('单击');
  210. //}, 400);
  211. //event.stopImmediatePropagation();
  212. //},true);
  213. el.addEventListener('dblclick', function () {
  214. console.log('双击');
  215. //clearTimeout(timer); //清除未执行的定时器
  216. //videControlPlayBtn.click();
  217. //event.stopImmediatePropagation();
  218. },true)
  219. }
  220.  
  221.  
  222.  
  223. }
  224.  
  225.  
  226. // 移动端页面滚动
  227. function mobileCssSet () {
  228. console.log('mobileCssSet before');
  229. // 基础的几个容器样式需要设置overflow 为 scroll
  230. let body = document.querySelector('body');
  231. let app = document.querySelector('#app');
  232. let index = document.querySelector('#index');
  233. let publicHeaderModule = document.querySelector('#publicHeaderModule');
  234.  
  235. let pageHeaderElArray = document.querySelectorAll('#publicHeaderModule>div');
  236. let pageMainContent = document.querySelector('.publicBigMainContentBox');
  237. let publicFooterModule = document.querySelector('#publicFooterModule');
  238.  
  239. let scrollVal = 'initial';
  240. console.log('元素列表');
  241. console.log(body,app,index,publicHeaderModule,pageHeaderElArray,pageMainContent,publicFooterModule)
  242. body.style.overflowX = scrollVal;
  243. app.style.overflowX = scrollVal;
  244. index.style.overflowX = scrollVal;
  245. publicHeaderModule.style.overflowX = scrollVal;
  246. pageMainContent.style.overflow = scrollVal;
  247. pageHeaderElArray[0].style.overflowX = scrollVal;
  248. pageHeaderElArray[1].style.overflowX = scrollVal;
  249. pageHeaderElArray[2].style.overflowX = scrollVal;
  250. publicFooterModule.style.overflowX = scrollVal;
  251.  
  252.  
  253. let videoContainer = document.querySelector('#videoContent .video>div');
  254. //videoContainer.style.width = '100vw';
  255. //document.ontouchstart = function(e) {
  256. // console.log('重置.document.ontouchstart');
  257. // };
  258. // document.ontouchmove = function(e) {
  259. // console.log('重置.document.ontouchmove');
  260. // };
  261. // document.addEventListener("touchmove",function(e){
  262. // console.log('addEventListener 出发了11111111111111111')
  263. //});
  264. console.log('mobileCssSet end');
  265. }
  266.  
  267.  
  268. function removeMask() {
  269. let pageHeaderElArray = document.querySelectorAll('.el-dialog__wrapper');
  270. pageHeaderElArray[0].style.display = 'none';
  271. pageHeaderElArray[1].style.display = 'none';
  272. pageHeaderElArray[2].style.display = 'none';
  273. pageHeaderElArray[3].style.display = 'none';
  274.  
  275. }
  276.  
  277. // 页面缩放
  278. function bodyScale() {
  279. let devicewidth = document.documentElement.clientWidth;
  280. let scale = devicewidth / 1920; // 分母——设计稿的尺寸宽度
  281.  
  282. let videoWidth = 1200*scale;
  283. let videoCompareWidth = devicewidth/videoWidth;
  284. console.log('devicewidth', devicewidth);
  285. console.log('videoWidth', videoWidth);
  286. console.log('设备宽度是视频宽度的', videoCompareWidth);
  287. document.body.style.zoom = (scale*videoCompareWidth).toFixed(2);
  288. }
  289. window.onresize = function () {
  290. bodyScale();
  291. };
  292. window.onload = function () {
  293. bodyScale();
  294. mobileCssSet();
  295. checkUrlAddListenser();
  296. console.log('page onload');
  297. removeMask();
  298. hideAlertDialog();
  299. removeTrack();
  300. };