QQ浮动代码JS怎样加入到网页中?

JavaScript08

QQ浮动代码JS怎样加入到网页中?,第1张

不懂js和html的朋友,难搞啊。。。

<script type="text/javascript" src="JS文件地址" charset="文件编码(设置防止乱码utf-8或gb2312)"></script>

右下角漂浮广告代码使用方法(一): 将以下代码以**.js文件形式保存,在模板中调用这个js文件即可

(备注该代码的图片大小为250*150 代码里面有参数自己看下就知道了)document.writeln("<div id=\"qqaddiv\" style=\"position:absolutez-index: 100\">")

document.writeln("<a href=链接地址 target=_blank><img src=图片链接地址 border=0></a>")

document.writeln("</div>")

var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body

var adst = document.getElementById("qqaddiv").style

adst.top = ( bodyfrm.clientHeight - 150 ) + "px"

adst.left = ( bodyfrm.clientWidth - 250 ) + "px"

function moveR() {

adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 150 ) + "px"

adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - 250 ) + "px"

}

setInterval("moveR()", 80) 右下角漂浮广告代码使用方法(二): var qq_etewidth = 259

var qq_eteheight = 158

var qq_banner_filename = "广告图片链接地址"

var qq_gotoUrl = '广告链接地址'document.write("<div id=eteUnionUpFloat style='margin:0pxpadding-bottom:300pxz-index: 10position:absolutewidth:"+qq_etewidth+"pxheight:"+qq_eteheight+"px'>")

document.write("<a href='"+qq_gotoUrl+"' target='_blank'><img src='"+qq_banner_filename+"' border='0' style='cursor: hand' width='"+qq_etewidth+"' height='"+qq_eteheight+"'></a>")

document.write("</div>")

var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body

var adst = document.getElementById("eteUnionUpFloat").style

adst.top = ( bodyfrm.clientHeight - qq_eteheight ) + "px"

adst.left = ( bodyfrm.clientWidth - qq_etewidth ) + "px"

function moveR() {

adst.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - qq_eteheight ) + "px"

adst.left = ( bodyfrm.scrollLeft + bodyfrm.clientWidth - qq_etewidth ) + "px"

}

var objTimer=setInterval("moveR()", 100)function CloseX(){

adst.display='none'

}function ete_closediv()

{

document.getElementById('eteUnionUpFloat').style.visibility='hidden'

if(objTimer) window.clearInterval(objTimer)

}