<script type="text/javascript"> var pic_width = 417; //图片宽度 var pic_height = 215; //图片高度 var button_pos = 4; //按扭位置 1-左 2-右 3-上 4-下 var stop_time = 4000; //图片停留时间(1000为1秒钟) var show_text = 1; //是否显示文字标签 1-显示 0-不显示 var txtcolor = "000000"; //文字色 var bgcolor = "FFFFFF"; //背景色 var imag = new Array(); var link = new Array(); var text = new Array(); imag[1] = "images/1.jpg"; link[1] = "http://www.ucml.com.cn"; text[1] = "UCML框架平台"; imag[2] = "images/2.jpg"; link[2] = "http://blackberry.csdn.net"; text[2] = "BlackBerry移动智能平台"; imag[3] = "images/3.jpg"; link[3] = "http://web-developer.csdn.net"; text[3] = "Visual Studio 2010"; imag[4] = "images/4.jpg"; link[4] = "http://qt.csdn.net/certification.aspx"; text[4] = "诺基亚Qt认证"; imag[5] = "images/5.jpg"; link[5] = "http://www.ciecloud.org/2010"; text[5] = "第二届中国云计算大会"; var swf_height = show_text == 1 ? pic_height + 20 : pic_height; var pics = "", links = "", texts = ""; for (var i = 1; i < imag.length; i++) { pics = pics + ("|" + imag[i]); links = links + ("|" + link[i]); texts = texts + ("|" + text[i]); } pics = pics.substring(1); links = links.substring(1); texts = texts.substring(1); document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cabversion=6,0,0,0" width="' + pic_width + '" height="' + swf_height + '">'); document.write('<param name="movie" value="swf/focus.swf">'); document.write('<param name="quality" value="high"><param name="wmode" value="opaque">'); document.write('<param name="FlashVars" value="pics=' + pics + '&links=' + links + '&texts=' + texts + '&pic_width=' + pic_width + '&pic_height=' + pic_height + '&show_text=' + show_text + '&txtcolor=' + txtcolor + '&bgcolor=' + bgcolor + '&button_pos=' + button_pos + '&stop_time=' + stop_time + '">'); document.write('<embed wmode="transparent" src="swf/focus.swf" FlashVars="pics=' + pics + '&links=' + links + '&texts=' + texts + '&pic_width=' + pic_width + '&pic_height=' + pic_height + '&show_text=' + show_text + '&txtcolor=' + txtcolor + '&bgcolor=' + bgcolor + '&button_pos=' + button_pos + '&stop_time=' + stop_time + '" quality="high" width="' + pic_width + '" height="' + swf_height + '" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); document.write('</object>'); </script> |