日期:2014-05-16 浏览次数:20443 次
function show_video(video_url){
var objs = "";
objs += "<OBJECT id=article_media WIDTH=500px HEIGHT=400px CLASSID=CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95";
objs += " CODEBASE=http://activex.microsoft.com/activex/controls/mplayer/en/ nsmp2inf.cab#Version=6,4,5,715 STANDBY=Loading Microsoft? Windows Media? Player components... TYPE=audio/mpeg>";
objs += "<PARAM NAME=FileName VALUE='../videos/"+video_url+"'>";
objs += "<PARAM NAME=ShowControls VALUE=true>";
objs += "<PARAM NAME=AutoRewind VALUE=true>";
objs += "<PARAM NAME=ShowStatusBar VALUE=1>";
objs += "<PARAM NAME=AutoStart VALUE=1>";
objs += "</OBJECT>";
objs += "<p>关闭</p>";
$("#dis_video").html(objs);
$("#dis_video").css({
"display": "block",
"position": "absolute",
"width": 500,
"height": 440,
"top": (document.documentElement.clientHeight-440)/2+$(document).scrollTop(),
"left": (document.documentElement.clientWidth-500)/2
});
$('#dis_video').toggle(500, function(){
$(this).slideDown(500);
});
$("#dis_video p").click(function(){
$("#dis_video").html();
$("#dis_video").empty();
$("#dis_video").hide(500);
});
}