avatar
匿名用户
×
创建一个新的页面
输入页面标题:
目前语音维基上有2057个页面。 在上方输入您想创建的页面名称或单击以下标题之一,即可开始撰写!



语音维基

“MediaWiki:Common.js”的版本间的差异

 
(未显示4个用户的95个中间版本)
第1行: 第1行:
/* 这里的任何JavaScript将为所有用户在每次页面载入时加载。 */
+
$(document).ready(function () {
 +
 
 +
/* 处理直接下载的链接问题 */
 +
$('.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/;
 +
  var currentPlaying = null;
 +
 
 +
  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 () {
 +
      currentPlaying = null;
 +
      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 (currentPlaying != null && currentPlaying != a) {
 +
        currentPlaying.pause();
 +
        currentPlaying.currentTime = 0;
 +
        currentPlaying.parentNode.classList.remove('audio-player-playing');
 +
      }
 +
 
 +
      if (a.paused) {
 +
        a.play();
 +
        currentPlaying = a;
 +
        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);
 +
  };
 +
})();
 +
 
 +
/* 生成b站播放窗口 */
 
(function(){
 
(function(){
             let audios = document.getElementsByClassName("audio-player");
+
             var bVideos = document.getElementsByClassName('bilibili');
             for(let i=0;i<audios.length;i++){
+
             for(var i=0;i<bVideos.length;i++){
                 let audio = audios[i];
+
                 var bVideo = bVideos[i];
                 let link = audio.firstElementChild.href;
+
                 var bvid = bVideo.textContent.trim();
                 audio.innerHTML = "";
+
                 bVideo.innerHTML = '';
                 let a = document.createElement('audio');
+
                 var iframe = document.createElement('iframe');
                 a.src = link;
+
                 iframe.src = 'https://player.bilibili.com/player.html?page=1&bvid='+bvid;
                 audio.append(a);
+
                 iframe.scrolling = 'no';
                 let button = document.createElement('button');
+
                iframe.border = '0';
                 button.onclick = ()=>{
+
                 iframe.frameborder = 'no';
                    if (a.paused){
+
                iframe.framespacing='0';
                        a.play();
+
                 iframe.allowfullscreen='true';
                        button.classList.add('audio-player-playing');
+
                bVideo.append(iframe);
                        button.classList.remove('audio-player-paused');
+
            }
                    }else{
+
})();
                        a.pause()
+
 
                        button.classList.add('audio-player-paused');
+
/* 补齐丢失的MediaWiki快捷键 */
                        button.classList.remove('audio-player-playing');
+
$('#ca-edit').attr('accesskey','e');
                    }
+
$('#ca-edit').attr('title','编辑本页[alt-shift-e]');
                }
+
$('#ca-talk').attr('accesskey','t');
 +
$('#ca-talk').attr('title','关于内容页面的讨论[alt-shift-t]');
 +
 
 +
/* 右上角添加强制刷新按钮 */
 +
$('.wds-button-group #p-more .wds-list:not(.ns--1 .wds-list)').append('<li id="m-page-purge"><a href="?action=purge">强制刷新</a></li>');
 +
 
 +
/* 重新布局评论区 */
 +
/*
 +
(function () {
 +
  $('#allcomments .c-item').each(function(_, c) {
 +
    var $commentItem = $(c);
 +
    var $score = $commentItem.find('.c-score');
 +
 
 +
    $commentItem.prepend($score);
 +
    $commentItem.addClass('c-layout');
 +
  });
 +
})();
 +
*/
 +
 
 +
/* 使用占位图来代替受损图像链接(基本是图还没上传的) */
 +
$('a.new').each(function(_, n) {
 +
  var href = n.getAttribute('href');
 +
  var isImage = /\.(png|jpe?g|svg|gif)$/.test(href);
 +
 
 +
  if (isImage) {
 +
    // 将这个链接加上一个 class
 +
    n.classList.add('unresolved-image');
  
                a.onended = () => {
+
    // 其文本内容则是设置的宽高
                    button.classList.remove('audio-player-playing');
+
    n.style.width = n.textContent;
                }
+
    n.style.height = n.textContent;
 +
  }
 +
});
  
                audio.append(button);
+
/* 移除渲染延迟 Cloak */
            }
+
$('.template-render-cloak').each(function(_, n) {
 +
  n.classList.remove('template-render-cloak');
 +
});
 +
 
 +
/* 生成音频播放-s按钮 */
 +
(function (){
 +
  var audios = document.getElementsByClassName('audio-player-s');
 +
  var notValidAudio = /wpDestFile/;
 +
  var currentPlaying = null;
 +
 
 +
  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 () {
 +
      currentPlaying = null;
 +
      this.parentNode.classList.remove('audio-player-playing-s');
 +
    };
 +
 
 +
    var button = document.createElement('button');
 +
 
 +
    button.classList.add('audio-player-button-s');
 +
    button.append(a);
 +
    button.onclick = function () {
 +
      var a = this.firstElementChild;
 +
 
 +
      if (currentPlaying != null && currentPlaying != a) {
 +
        currentPlaying.pause();
 +
        currentPlaying.currentTime = 0;
 +
        currentPlaying.parentNode.classList.remove('audio-player-playing-s');
 +
      }
 +
 
 +
      if (a.paused) {
 +
        a.play();
 +
        currentPlaying = a;
 +
        this.classList.add('audio-player-playing-s');
 +
        this.classList.remove('audio-player-paused-s');
 +
      }
 +
      else {
 +
        a.pause();
 +
        this.classList.add('audio-player-paused-s');
 +
        this.classList.remove('audio-player-playing-s');
 +
      };
 +
    };
 +
   
 +
    audio.append(button);
 +
  };
 
})();
 
})();
  
(function(window, $, mw) {
+
document.addEventListener('copy', function(e) {
'use strict';
+
    var currentDate = new Date().toLocaleDateString();
//Load Protection
+
    var alertCount = localStorage.getItem('alertCount');
if (window.OggPlayerLoaded) return;
+
    if (!alertCount || JSON.parse(alertCount).date !== currentDate) {
window.OggPlayerLoaded = true;
+
        alertCount = { date: currentDate, count: 1 };
//Load Localization
+
    } else {
importArticle({type: 'script',article: 'u:dev:MediaWiki:I18n-js/code.js'});
+
        alertCount = JSON.parse(alertCount);
//Load Style
+
        if (alertCount.count >= 1) {
importArticle({type: 'style',article: 'u:dev:MediaWiki:OggPlayer.css'})
+
            return; // 已经提醒了三次,不再提醒
+
        }
//Default Setting
+
        alertCount.count++;
if(typeof window.oggPlayerButtonOnly == 'undefined') window.oggPlayerButtonOnly = false;
+
    }
+
 
function init(i18n) {
+
    var remainingAlerts = 1 - alertCount.count; // 剩余提醒次数
var OggPlayer = {
+
    var alertMessage = "当您使用本维基中的文本作为创作素材时,请务必在您的作品简介或评论区明确标注出处。\n今日还会提醒" + remainingAlerts + "次。";
support: '',
+
 
allButtons: $([]),
+
    e.preventDefault();
monit: function($elem) {
+
    var copiedText = window.getSelection().toString();
if(!window.oggPlayerButtonOnly) $elem.find('.audio-button .ogg_player,.mediaContainer').each(OggPlayer.prepPlayer);
+
    alert(alertMessage);
$elem.find('.audio-button').each(OggPlayer.prepButton);
+
    localStorage.setItem('alertCount', JSON.stringify(alertCount));
},
+
});
init: function() {
+
 
//Test Audio Support
+
});
OggPlayer.support = document.createElement('audio').canPlayType('audio/ogg');
 
OggPlayer.monit($(document));
 
mw.hook('wikipage.content').add(OggPlayer.monit);
 
},
 
prepPlayer: function() {
 
var player = $(this);
 
if(player.data('url')) return;
 
var button = player.find('button[onclick]');
 
if(button.length) {
 
var onclick = button[0].onclick.toString();
 
 
var match, url, width, height, isVideo;
 
if(match = onclick.match(/"videoUrl":"((?:\\.|[^"\\])+)"/)) url = match[1].replace('\\x26', '&');
 
if(match = onclick.match(/"width":([0-9]+)/)) width = match[1];
 
if(match = onclick.match(/"height":([0-9]+)/)) height = match[1];
 
if(match = onclick.match(/"isVideo":(true|false)/)) isVideo = match[1] == 'true';
 
 
if(isVideo) {
 
OggPlayer.video(player, url, width, height);
 
} else {
 
OggPlayer.audio(player, url, width);
 
}
 
} else {
 
var p = player.find('audio[src], video[src], source[src]');
 
player.closest(".audio-button")
 
.data('src', p.attr('src'))
 
.empty()//We know this is an audio-button class, so empty contents
 
.append(p);
 
}
 
player.removeClass(['ogg_player','mediaContainer']).addClass('ogg-player').removeAttr('id');
 
},
 
prepButton: function() {
 
var button = $(this);
 
if(button.prop('tagName') == 'A' || button.hasClass('no-audio')) return;
 
var src = button.data('src'),
 
sources = button.find('audio, video, button[onclick], img, a.internal');
 
if(OggPlayer.support === '') {
 
button.attr('title', i18n.msg('no-support').plain()).addClass('no-audio').empty();
 
return;
 
}
 
 
if(typeof src == 'undefined' || !OggPlayer.isValid(src)) {
 
sources.each(function(i, v) {
 
v = $(v);
 
if(v.prop('tagName') == 'A') {
 
src = v.attr('href');
 
} else if(v.prop('tagName') == 'BUTTON') {
 
var match, onclick = v[0].onclick.toString();
 
if(match = onclick.match(/"videoUrl":"((?:\\.|[^"\\])+)"/)) src = match[1];
 
} else {
 
src = v.attr('src');
 
}
 
if(OggPlayer.isValid(src)) return false;
 
src = false;
 
});
 
if(!src) {
 
button.addClass('no-audio').empty().attr('title', i18n.msg('no-audio').plain());
 
return;
 
}
 
}
 
var link = $('<a />', {
 
'class': button.attr('class'),
 
'style': button.attr('style'),
 
'data-src': button.data('src'),
 
'title': i18n.msg('play').plain(),
 
'href': src,
 
'click':function(e) {
 
e.preventDefault();
 
var audio = $(this).find('audio');
 
if(audio.prop('paused')) {
 
OggPlayer.stopAllButtons();
 
audio.trigger('play');
 
} else {
 
audio.trigger('pause');
 
}
 
return false;
 
}
 
});
 
button.replaceWith(link);
 
 
if(link.hasClass('click-parent')) {
 
if(!link.parent().hasClass('audio-button-parent')) {
 
link.parent().addClass('audio-button-parent').click(function(e) {
 
$(this).find('.click-parent').click();
 
});
 
} else {
 
link.removeClass('click-parent');
 
}
 
}
 
 
var audio = $('<audio />', {
 
src: src,
 
preload: 'none',
 
}).appendTo(link).on('play', function(e) {
 
$(this).parent().addClass('now-playing');
 
}).on('pause', function(e) {
 
$(this).parent().removeClass('now-playing');
 
this.currentTime = 0;
 
}).on('ended', function(e) {
 
$(this).trigger('pause');
 
}).on('error', function(e) {
 
$(this).parent().addClass('no-audio').removeClass('now-playing').empty().attr('title', 'err' + i18n.msg('no-audio').plain());
 
});
 
OggPlayer.allButtons = OggPlayer.allButtons.add(audio);
 
},
 
stopAllButtons: function() {
 
OggPlayer.allButtons.trigger('pause');
 
},
 
isValid: function(url) {
 
if(url === undefined) return false;
 
url = url.replace(/\?.*$/, '');
 
if(url.search(/(?:https?:)?(?:\/\/)(?:images|img|static|vignette)\d*\.wikia\.(?:nocookie\.)?(?:net|com)/) < 0 && url.search(/(?:https?:)?(?:\/\/)upload\.wikimedia\.org/) < 0) return false; // Wikia and Wikimedia only
 
url = url.replace(/(vignette.*?)(\/revision.*$)/, '$1');
 
if(url.search(/\.(ogg|oga|ogv)$/) < 0) return false;
 
return true;
 
},
 
video: function(player, url, width, height) {
 
if(!url) return;
 
var a = player.find('a.image');
 
player.addClass('ogg-video-player')
 
.data('url', url)
 
.empty()
 
.append(
 
$('<video />', {
 
controls : 'controls',
 
width: width,
 
height: height,
 
src: url,
 
preload: 'metadata'
 
})
 
.click(function(){
 
this.paused ? this.play() : this.pause();
 
})
 
.dblclick(function(){
 
if(document.fullscreenEnabled || document.webkitFullscreenEnabled || document.mozFullScreenEnabled || document.msFullscreenEnabled) {
 
if(document.fullscreenElement || document.webkitFullscreenElement || document.mozFullScreenElement || document.msFullscreenElement) {
 
if(document.exitFullscreen) {
 
document.exitFullscreen();
 
} else if(document.webkitExitFullscreen) {
 
document.webkitExitFullscreen();
 
} else if(document.mozCancelFullScreen) {
 
document.mozCancelFullScreen();
 
} else if(document.msExitFullscreen) {
 
document.msExitFullscreen();
 
}
 
} else {
 
if(this.requestFullscreen) {
 
this.requestFullscreen();
 
} else if(this.webkitRequestFullscreen) {
 
this.webkitRequestFullscreen();
 
} else if(this.mozRequestFullScreen) {
 
this.mozRequestFullScreen();
 
} else if(this.msRequestFullscreen) {
 
this.msRequestFullscreen();
 
}
 
}
 
}
 
})
 
)
 
.append($('<a></a>').addClass('info-icon').attr({
 
href: a.attr('href'),
 
title: a.attr('title')
 
}));
 
},
 
audio: function(player, url, width) {
 
if(!url) return;
 
var a = player.find('a.image');
 
player.addClass('ogg-audio-player')
 
.data('url', url)
 
.empty()
 
.append($('<audio>', {
 
controls : 'controls',
 
src: url,
 
preload: 'metadata'
 
}).css('width', width))
 
.append($('<a>').addClass('info-icon').attr({
 
href: a.attr('href'),
 
title: a.attr('title')
 
}));
 
}
 
};
 
//If not fandom legacy
 
if (mw.config.get('wgVersion') !== '1.19.24')
 
OggPlayer = {
 
constRef:{
 
wrapper:"audio-button",
 
noSupport:"no-support",
 
noAudio:"no-audio",
 
nowPlaying:"now-playing",
 
OggAudio:"OggPlayer-Audio",
 
play:"play"
 
},
 
init: function() {
 
//Test Audio Support
 
var support = document.createElement('audio').canPlayType('audio/ogg');
 
if (support === "") return OggPlayer.noSupport();
 
mw.hook('wikipage.content').add(OggPlayer.monitor);
 
},
 
noSupport: function() {
 
$('.audio-button:not(.ready)').attr('title',i18n.msg(OggPlayer.constRef.noSupport).plain()).addClass(OggPlayer.constRef.noAudio);
 
},
 
monitor: function($elem) {
 
$elem.find('.audio-button').each(OggPlayer.eachInstance);
 
},
 
eachInstance: function() {
 
var instance = $(this);
 
//Normalize embed data to instance
 
if (instance.children().length) {
 
var focus = instance.find("a[href][class=internal],audio[src],video[src],source[src]");
 
instance.data("src",focus.attr("href")||focus.attr("src"));
 
}
 
//Create Button from instance src
 
OggPlayer.createButton(instance);
 
},
 
createButton: function(target) {
 
if (!OggPlayer.isValid(target.data('src')))
 
return OggPlayer.errorPlayer(target);
 
var audioObj = $('<audio>',{
 
src:target.data('src'),
 
preload:'none',
 
class:OggPlayer.constRef.OggAudio,
 
on:{
 
playing:function(){
 
$(this).parent().addClass(OggPlayer.constRef.nowPlaying);
 
},
 
pause:OggPlayer.stopThis,
 
ended:OggPlayer.stopThis,
 
error: function(){
 
OggPlayer.errorPlayer($(this).parent());
 
}
 
}
 
});
 
target.click(OggPlayer.clickButton).append(audioObj).attr('title',i18n.msg(OggPlayer.constRef.play).plain());
 
},
 
clickButton: function(){
 
var focusDom = $(this).find("audio."+OggPlayer.constRef.OggAudio).get(0);
 
var toPlay = false;
 
if (!focusDom.currentTime) toPlay = true;
 
OggPlayer.pauseAll();
 
if (toPlay) {
 
focusDom.preload="auto";
 
focusDom.play();
 
}
 
},
 
pauseAll: function(){
 
$("."+OggPlayer.constRef.nowPlaying+" audio."+OggPlayer.constRef.OggAudio).trigger("pause");
 
},
 
errorPlayer: function(player){
 
player.addClass(OggPlayer.constRef.noAudio).attr('title', i18n.msg(OggPlayer.constRef.noAudio).plain());
 
},
 
stopThis: function(){
 
$(this).parent().removeClass(OggPlayer.constRef.nowPlaying);
 
this.currentTime = 0;
 
},
 
isValid: function(url) {
 
if(url === undefined) return false;
 
url = url.replace(/\?.*$/, '');
 
if(url.search(/(?:https?:)?(?:\/\/)(?:images|img|static|vignette)\d*\.wikia\.(?:nocookie\.)?(?:net|com)/) < 0 && url.search(/(?:https?:)?(?:\/\/)upload\.wikimedia\.org/) < 0) return false; // Wikia and Wikimedia only
 
url = url.replace(/(vignette.*?)(\/revision.*$)/, '$1');
 
if(url.search(/\.(ogg|oga|ogv)/) < 0) return false; //Removed the ending tag ($) from previous author's vesion since regex strip didn't work too well
 
return true;
 
}
 
};
 
 
OggPlayer.init();
 
}
 
 
mw.hook('dev.i18n').add(function(i18n) {
 
i18n.loadMessages('OggPlayer').then(init);
 
});
 
})(this,jQuery, mediaWiki);
 

2024年4月5日 (五) 00:03的最新版本

$(document).ready(function () {

/* 处理直接下载的链接问题 */
$('.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/;
  var currentPlaying = null;

  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 () {
      currentPlaying = null;
      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 (currentPlaying != null && currentPlaying != a) {
        currentPlaying.pause();
        currentPlaying.currentTime = 0;
        currentPlaying.parentNode.classList.remove('audio-player-playing');
      }

      if (a.paused) {
        a.play();
        currentPlaying = a;
        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);
  };
})();

/* 生成b站播放窗口 */
(function(){
            var bVideos = document.getElementsByClassName('bilibili');
            for(var i=0;i<bVideos.length;i++){
                var bVideo = bVideos[i];
                var bvid = bVideo.textContent.trim();
                bVideo.innerHTML = '';
                var iframe = document.createElement('iframe');
                iframe.src = 'https://player.bilibili.com/player.html?page=1&bvid='+bvid;
                iframe.scrolling = 'no';
                iframe.border = '0';
                iframe.frameborder = 'no';
                iframe.framespacing='0';
                iframe.allowfullscreen='true';
                bVideo.append(iframe);
            }
})();

/* 补齐丢失的MediaWiki快捷键 */
$('#ca-edit').attr('accesskey','e');
$('#ca-edit').attr('title','编辑本页[alt-shift-e]');
$('#ca-talk').attr('accesskey','t');
$('#ca-talk').attr('title','关于内容页面的讨论[alt-shift-t]');

/* 右上角添加强制刷新按钮 */
$('.wds-button-group #p-more .wds-list:not(.ns--1 .wds-list)').append('<li id="m-page-purge"><a href="?action=purge">强制刷新</a></li>');

/* 重新布局评论区 */
/*
(function () {
  $('#allcomments .c-item').each(function(_, c) {
    var $commentItem = $(c);
    var $score = $commentItem.find('.c-score');

    $commentItem.prepend($score);
    $commentItem.addClass('c-layout');
  });
})();
*/

/* 使用占位图来代替受损图像链接(基本是图还没上传的) */
$('a.new').each(function(_, n) {
  var href = n.getAttribute('href');
  var isImage = /\.(png|jpe?g|svg|gif)$/.test(href);

  if (isImage) {
    // 将这个链接加上一个 class
    n.classList.add('unresolved-image');

    // 其文本内容则是设置的宽高
    n.style.width = n.textContent;
    n.style.height = n.textContent;
  }
});

/* 移除渲染延迟 Cloak */
$('.template-render-cloak').each(function(_, n) {
  n.classList.remove('template-render-cloak');
});

/* 生成音频播放-s按钮 */
(function (){
  var audios = document.getElementsByClassName('audio-player-s');
  var notValidAudio = /wpDestFile/;
  var currentPlaying = null;

  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 () {
      currentPlaying = null;
      this.parentNode.classList.remove('audio-player-playing-s');
    };

    var button = document.createElement('button');

    button.classList.add('audio-player-button-s');
    button.append(a);
    button.onclick = function () {
      var a = this.firstElementChild;

      if (currentPlaying != null && currentPlaying != a) {
        currentPlaying.pause();
        currentPlaying.currentTime = 0;
        currentPlaying.parentNode.classList.remove('audio-player-playing-s');
      }

      if (a.paused) {
        a.play();
        currentPlaying = a;
        this.classList.add('audio-player-playing-s');
        this.classList.remove('audio-player-paused-s');
      } 
      else {
        a.pause();
        this.classList.add('audio-player-paused-s');
        this.classList.remove('audio-player-playing-s');
      };
    };
    
    audio.append(button);
  };
})();

document.addEventListener('copy', function(e) {
    var currentDate = new Date().toLocaleDateString();
    var alertCount = localStorage.getItem('alertCount');
    if (!alertCount || JSON.parse(alertCount).date !== currentDate) {
        alertCount = { date: currentDate, count: 1 };
    } else {
        alertCount = JSON.parse(alertCount);
        if (alertCount.count >= 1) {
            return; // 已经提醒了三次,不再提醒
        }
        alertCount.count++;
    }

    var remainingAlerts = 1 - alertCount.count; // 剩余提醒次数
    var alertMessage = "当您使用本维基中的文本作为创作素材时,请务必在您的作品简介或评论区明确标注出处。\n今日还会提醒" + remainingAlerts + "次。";

    e.preventDefault();
    var copiedText = window.getSelection().toString();
    alert(alertMessage);
    localStorage.setItem('alertCount', JSON.stringify(alertCount));
});

});