;var videoPopupPlay = (function() { var player = ""; var closeBtn = document.createElement("div"); var video = document.createElement("video"); var playbox = document.createElement("div"); var fullwrap = document.createElement("div"); //创建全屏播放界面 function createHtml() { closeBtn.className = "full-close-btn"; video.className = "video-js vjs-default-skin vjs-big-play-centered"; video.id = "video-full-play"; video.style.width = "100%"; video.style.height = "100%"; video.setAttribute("controls", "") playbox.className = "full-play-box"; fullwrap.className = "full-video-wrap"; fullwrap.id = "js-fullVideo"; playbox.appendChild(video); playbox.appendChild(closeBtn); fullwrap.appendChild(playbox); document.body.appendChild(fullwrap); buildEvent(); } function buildEvent() { fullwrap.addEventListener("click", function(event) { var target = event.target; if(target == fullwrap || target == closeBtn) { hideFullWrap(); } }, false); } function showFullWrap() { fullwrap.classList.add("full-show"); } function hideFullWrap() { fullwrap.classList.remove("full-show"); stopOtherVideo(); } function stopOtherVideo() { //停止其他视频播放 var otherVideo = document.getElementsByTagName("video"); for(var i=0; i