我在伊朗长大读后感:窗口两边随滚动条下移图片的代码是什么

来源:百度文库 编辑:高校问答 时间:2024/05/14 10:02:06

你说的是浮动广告

下面是文件代码:
// Flash_right.js

var adSrc2 = "images/my.swf" //图片地址
var adUrl2 = "http://www.baidu.com" //链接网址
var adWidth2 = "75"
var adHeight2 = "75"

var weny2 = 10
var wenx2 = 3
var imgheight
document.ns = navigator.appName == "Netscape"
window.screen.width>800 ? imgheight=300:imgheight=120
function myload()
{
if (navigator.appName == "Netscape")
{document.getElementById("dangdang").pageY=pageYOffset+window.innerHeight-imgheight;
document.getElementById("dangdang").pageX=+window.innerWidth-110;
mymove();
}
else
{
document.getElementById("dangdang").style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
document.getElementById("dangdang").style.left=document.body.offsetWidth-110;
mymove();
}
}
function mymove()
{
if(document.ns)
{
document.getElementById("dangdang").top=pageYOffset+window.innerHeight-imgheight;
document.getElementById("dangdang").left=pageXOffset+window.innerWidth-110;
setTimeout("mymove();",80)
}
else
{
document.getElementById("dangdang").style.top=document.body.scrollTop+document.body.offsetHeight-imgheight;
document.getElementById("dangdang").style.left=document.body.scrollLeft+document.body.offsetWidth-110;
setTimeout("mymove();",80)
}
}

function MM_reloadPage(init) { //reloads the window if Nav4 resized
if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true)

if (navigator.appName == "Netscape")
{document.write("<layer id=dangdang top=300 width=80 height=88><a href="+adUrl2+" target=_blank><EMBED src=" + adSrc2 + " quality=high WIDTH=" + adWidth2 + " HEIGHT=" + adHeight2 + " TYPE='application/x-shockwave-flash'></EMBED></a></layer>");
myload()}
else
{
document.write("<div id=dangdang style='position: absolute;width:80;top:0;left:578;visibility: visible;z-index: 1'><a href="+adUrl2+" target=_blank><EMBED src=" + adSrc2 + " quality=high WIDTH=" + adWidth2 + " HEIGHT=" + adHeight2 + " TYPE='application/x-shockwave-flash' wmode='transparent'></EMBED></a></div>");
myload()
}

-------------------------

然后在html中加入下面这句:
<script language="JavaScript" src="js/flash_right.js"></script>

http://www.makewing.com/lanren/js/02/index.htm

下载地址:http://www.makewing.com/lanren/js/02.rar