// javascript document $(function(){ var srcl="",simg='' //高度计算 $(window).resize(function(){ video() }) $(window).resize(); var issupporttouch = "ontouchend" in document ? true : false; $(".video_button").click(function(e){ srcl=$(this).data("video"); simg=$(this).data("img"); $(".video_appbox").fadein(); video() }) $(".video_appbox .mask,.closefont").click(function () { $(".video_appbox").fadeout(); $(".video_t").html("") }) function video(){ if(issupporttouch) { $(".video_t").html("") // $(".video_t video").attr({width:$(".video_t").width(),height:$(".video_t").height()}) } else { videobox($(".video_t").width(), $(".video_t").height(), srcl,simg); } } function videobox(width, height, url,img) { var s1 = new swfobject("../video/flvplayer.swf","single",width,height,"7"); s1.addparam("allowfullscreen","true"); s1.addparam("wmode","transparent"); s1.addvariable("file",url); s1.addvariable("autostart","true"); s1.addvariable("width",width); s1.addvariable("backcolor",0x000000); s1.addvariable("frontcolor",0xffffff); s1.addvariable("lightcolor",0x000000); s1.addvariable("height",height); s1.write("player1"); } })