$(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 = "/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(); }); })