$(function(){ $(".video-li-a").on("click touch", function () { var self = $(this), videoPath = self.attr("video-path"); if (videoPath) { videoPath = (videoPath + "?n=" + Math.random()); var playerPath = "/templates/main/plugin/ckplayer6.6/ckplayer/"; $.getScript(playerPath + "ckplayer.js", function () { var videoWarp = $(".big-video-main"); if (!air.isMobile()) { var width = 900, height = 480; videoWarp.html("
"); CKobject.embed(playerPath + 'ckplayer.swf', 'video-box', 'player', width, height, false, ({ f: videoPath, c: 0 })); videoWarp.delay(800).show(function () { CKobject.getObjectById('player').videoPlay(); }); } else { videoWarp.html(" ").children("video").trigger("play"); } }); $(".shade,.big-video").show(); } else { var options = { type: 2, msg: "视频不存在或已删除", overlayShow: false }; msgBox.tips(options); } }); $(".big-video-clo").on("click touch", function () { $(".shade, .big-video").hide(); }); })