时间:2021-07-01 10:21:17 帮助过:33人阅读
代码如下:在需要放置幻灯片的地方,用下面的代码覆盖,也可以把下面的代码单独写成一个文件调用,
function my_getbyid(id)
{
itm = null;
if (document.getElementById)
{
itm = document.getElementById(id);
}
else if (document.all)
{
itm = document.all[id];
}
else if (document.layers)
{
itm = document.layers[id];
}
return itm;
}
function sunad(element,url,width,height,images,links,texts)
{
if (!my_getbyid(element)) return;
var str = '';
str += '';
my_getbyid(element).innerHTML = str;
}
如文件名为ad.asp,在幻灯片区域调用:代码如下:
url_0="http://www.abc.com";
img_0="http://www.abc.com/01.jpg";
url_1="http://www.abc.com";
img_1="http://www.abc.com/02.jpg";
url_2="http://www.abc.com";
img_2="http://www.abc.com/03.jpg";
url_3="http://www.abc.com";
img_3="http://www.abc.com/04.jpg";
url_4="http://www.abc.com";
img_4="http://www.abc.com/05.jpg";
var focus_width=250
var focus_height=250
var text_height=0
var swf_height = focus_height+text_height
var pics =img_0+"|"+img_1+"|"+img_2+"|"+img_3+"|"+img_4
var links=url_0+"|"+url_1+"|"+url_2+"|"+url_3+"|"+url_4
var texts = '';
var focus = 'http://www.abc.com/ad/focus.swf';
sunad('story_flash',focus, focus_width,swf_height,pics,links,texts)
script>
上面代码中:var focus = 'http://www.abc.com/ad/focus.swf';
这句的focus.swf是flash播放文件