DominicWoo(讨论 | 贡献) (页面内容被替换为“→这里的任何JavaScript将为所有用户在每次页面载入时加载。: →加载Mobile.css: mw.loader.using('mobile.site.styles');”) 标签:替换 |
小 标签:移动网页编辑 移动版编辑 |
||
第3行: | 第3行: | ||
/* 加载Mobile.css */ | /* 加载Mobile.css */ | ||
mw.loader.using('mobile.site.styles'); | mw.loader.using('mobile.site.styles'); | ||
+ | |||
+ | /* 处理直接下载的链接问题 */ | ||
+ | $('.download-link > a').each(function (_, n) { | ||
+ | n.setAttribute('target', '_blank'); | ||
+ | n.setAttribute('download', n.getAttribute('title')); | ||
+ | n.setAttribute('title', '下载'); | ||
+ | }); | ||
+ | |||
+ | /* 生成音频播放按钮 */ | ||
+ | (function(){ | ||
+ | var audios = document.getElementsByClassName('audio-player'); | ||
+ | var notValidAudio = /wpDestFile/; | ||
+ | for(var i=0;i<audios.length;i++){ | ||
+ | var audio = audios[i]; | ||
+ | var linkEl = audio.firstElementChild; | ||
+ | |||
+ | if (!linkEl) { | ||
+ | continue; | ||
+ | } | ||
+ | |||
+ | var link = linkEl.href; | ||
+ | |||
+ | if(notValidAudio.test(link)) continue; | ||
+ | audio.innerHTML = ''; | ||
+ | audio.classList.add('has-audio-element'); | ||
+ | |||
+ | var a = document.createElement('audio'); | ||
+ | a.src = link; | ||
+ | a.preload = 'none'; | ||
+ | a.onended = function(){ | ||
+ | this.parentNode.classList.remove('audio-player-playing'); | ||
+ | }; | ||
+ | var button = document.createElement('button'); | ||
+ | button.classList.add('audio-player-button'); | ||
+ | button.append(a); | ||
+ | button.onclick = function(){ | ||
+ | var a = this.firstElementChild; | ||
+ | if (a.paused){ | ||
+ | a.play(); | ||
+ | this.classList.add('audio-player-playing'); | ||
+ | this.classList.remove('audio-player-paused'); | ||
+ | }else{ | ||
+ | a.pause(); | ||
+ | this.classList.add('audio-player-paused'); | ||
+ | this.classList.remove('audio-player-playing'); | ||
+ | }; | ||
+ | }; | ||
+ | audio.append(button); | ||
+ | }; | ||
+ | })(); | ||
+ | |||
+ | /* 移除渲染延迟 Cloak */ | ||
+ | $('.template-render-cloak').each(function(_, n) { | ||
+ | n.classList.remove('template-render-cloak'); | ||
+ | }); |
2021年4月2日 (五) 09:18的版本
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */ /* 加载Mobile.css */ mw.loader.using('mobile.site.styles'); /* 处理直接下载的链接问题 */ $('.download-link > a').each(function (_, n) { n.setAttribute('target', '_blank'); n.setAttribute('download', n.getAttribute('title')); n.setAttribute('title', '下载'); }); /* 生成音频播放按钮 */ (function(){ var audios = document.getElementsByClassName('audio-player'); var notValidAudio = /wpDestFile/; for(var i=0;i<audios.length;i++){ var audio = audios[i]; var linkEl = audio.firstElementChild; if (!linkEl) { continue; } var link = linkEl.href; if(notValidAudio.test(link)) continue; audio.innerHTML = ''; audio.classList.add('has-audio-element'); var a = document.createElement('audio'); a.src = link; a.preload = 'none'; a.onended = function(){ this.parentNode.classList.remove('audio-player-playing'); }; var button = document.createElement('button'); button.classList.add('audio-player-button'); button.append(a); button.onclick = function(){ var a = this.firstElementChild; if (a.paused){ a.play(); this.classList.add('audio-player-playing'); this.classList.remove('audio-player-paused'); }else{ a.pause(); this.classList.add('audio-player-paused'); this.classList.remove('audio-player-playing'); }; }; audio.append(button); }; })(); /* 移除渲染延迟 Cloak */ $('.template-render-cloak').each(function(_, n) { n.classList.remove('template-render-cloak'); });