js或者CSS带关闭的漂浮广告代码

JavaScript010

js或者CSS带关闭的漂浮广告代码,第1张

<html><head><title>固定在底部的漂浮广告</title></head><body><script LANGUAGE='JavaScript'>var ad_float_left_src="http:/images/logo.gif"var ad_float_left_url = "http:"var ad_float_left_type = ""document.ns = navigator.appName == "Microsoft Internet Explorer"var imgheight_closevar imgleftwindow.screen.width>800 ? imgheight_close=120:imgheight_close=120window.screen.width>800 ? imgleft=15:imgleft=122function myload(){myleft.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight_closemyleft.style.left=imgleftleftmove()}function leftmove(){myleft.style.top=document.body.scrollTop+document.body.offsetHeight-imgheight_closemyleft.style.left=imgleftsetTimeout("leftmove()",50)}function MM_reloadPage(init) {if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {document.MM_pgW=innerWidthdocument.MM_pgH=innerHeightonresize=MM_reloadPage}}else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload()}MM_reloadPage(true)function close_float_left(){myleft.style.visibility='hidden'}if(document.ns){document.write("<div id=myleft style='position: absolutewidth:80top:300left:5visibility: visiblez-index: 1'><style>A.closefloat:link,A.refloat:visited {text-decoration:nonecolor:#000000font-size:12px}A.closefloat:active,A.refloat:hover {text-decoration:underlinecolor:#0000FFfont-size:12px}</style><table border=0 cellpadding=0 cellspacing=0><tr><td>")if(ad_float_left_type!="swf")document.write("<a href='" + ad_float_left_url + "' target = '_blank'><img src='" + ad_float_left_src + "' WIDTH=100 HEIGHT=100 border = 0></a>")elsedocument.write("<EMBED src='" + ad_float_left_src + "' FlashVars='" + ad_float_left_url + "' quality=high WIDTH=80 HEIGHT=80 TYPE='application/x-shockwave-flash' id=changhongout ></EMBED>")document.write("</td></tr><tr><td width=80 height=20 align=right><a href='javascript:close_float_left()void(0)' class=closefloat><font color=#0000ff size=2>关闭<font></a></td></tr></table></div>")myload()}</script></body></html>

<title>JS漂浮图片,点击图片后会关闭</title>

<script language="JavaScript">

var Ymax=8

var Xmax=8

var Tmax=10000

var floatimages=new Array()

floatimages[0]='/images/logo.gif'

floatimages[1]='/jscss/demoimg/wall_s8.jpg'

var NS4 = (navigator.appName.indexOf("Netscape")>=0 &&parseFloat(navigator.appVersion) >= 4 &&parseFloat(navigator.appVersion) <5)? true : false

var IE4 = (document.all)? true : false

var NS6 = (parseFloat(navigator.appVersion) >= 5 &&navigator.appName.indexOf("Netscape")>=0 )? true: false

var wind_w, wind_h, t='', IDs=new Array()

for(i=0i<floatimages.lengthi++){

t+=(NS4)?'<layer name="pic'+i+'" visibility="hide" width="10" height="10"><a href="javascript:hidebutterfly()">' : '<div id="pic'+i+'" style="position:absolutevisibility:hiddenwidth:10pxheight:10px"><a href="javascript:hidebutterfly()">'

t+='<img src="'+floatimages[i]+'" name="p'+i+'" border="0"/>'

t+=(NS4)? '</a></layer>':'</a></div>'

}

document.write(t)

function moveimage(num){

if(getidleft(num)+IDs[num].W+IDs[num].Xstep >= wind_w+getscrollx())IDs[num].Xdir=false

if(getidleft(num)-IDs[num].Xstep<=getscrollx())IDs[num].Xdir=true

if(getidtop(num)+IDs[num].H+IDs[num].Ystep >= wind_h+getscrolly())IDs[num].Ydir=false

if(getidtop(num)-IDs[num].Ystep<=getscrolly())IDs[num].Ydir=true

moveidby(num, (IDs[num].Xdir)? IDs[num].Xstep : -IDs[num].Xstep , (IDs[num].Ydir)? IDs[num].Ystep: -IDs[num].Ystep)

}

function getnewprops(num){

IDs[num].Ydir=Math.floor(Math.random()*2)>0

IDs[num].Xdir=Math.floor(Math.random()*2)>0

IDs[num].Ystep=Math.ceil(Math.random()*Ymax)

IDs[num].Xstep=Math.ceil(Math.random()*Xmax)

setTimeout('getnewprops('+num+')', Math.floor(Math.random()*Tmax))

}

function getscrollx(){

if(NS4 || NS6)return window.pageXOffset

if(IE4)return document.body.scrollLeft

}

function getscrolly(){

if(NS4 || NS6)return window.pageYOffset

if(IE4)return document.body.scrollTop

}

function getid(name){

if(NS4)return document.layers[name]

if(IE4)return document.all[name]

if(NS6)return document.getElementById(name)

}

function moveidto(num,x,y){

if(NS4)IDs[num].moveTo(x,y)

if(IE4 || NS6){

IDs[num].style.left=x+'px'

IDs[num].style.top=y+'px'

}}

function getidleft(num){

if(NS4)return IDs[num].left

if(IE4 || NS6)return parseInt(IDs[num].style.left)

}

function getidtop(num){

if(NS4)return IDs[num].top

if(IE4 || NS6)return parseInt(IDs[num].style.top)

}

function moveidby(num,dx,dy){

if(NS4)IDs[num].moveBy(dx, dy)

if(IE4 || NS6){

IDs[num].style.left=(getidleft(num)+dx)+'px'

IDs[num].style.top=(getidtop(num)+dy)+'px'

}}

function getwindowwidth(){

if(NS4 || NS6)return window.innerWidth

if(IE4)return document.body.clientWidth

}

function getwindowheight(){

if(NS4 || NS6)return window.innerHeight

if(IE4)return document.body.clientHeight

}

function init(){

wind_w=getwindowwidth()

wind_h=getwindowheight()

for(i=0i<floatimages.lengthi++){

IDs[i]=getid('pic'+i)

if(NS4){

IDs[i].W=IDs[i].document.images["p"+i].width

IDs[i].H=IDs[i].document.images["p"+i].height

}

if(NS6 || IE4){

IDs[i].W=document.images["p"+i].width

IDs[i].H=document.images["p"+i].height

}

getnewprops(i)

moveidto(i , Math.floor(Math.random()*(wind_w-IDs[i].W)), Math.floor(Math.random()*(wind_h-IDs[i].H)))

if(NS4)IDs[i].visibility = "show"

if(IE4 || NS6)IDs[i].style.visibility = "visible"

startfly=setInterval('moveimage('+i+')',Math.floor(Math.random()*100)+100)

}}

function hidebutterfly(){

for(i=0i<floatimages.lengthi++){

if (IE4)

eval("document.all.pic"+i+".style.visibility='hidden'")

else if (NS6)

document.getElementById("pic"+i).style.visibility='hidden'

else if (NS4)

eval("document.pic"+i+".visibility='hide'")

clearInterval(startfly)

}

}

if (NS4||NS6||IE4){

window.onload=init

window.onresize=function(){ wind_w=getwindowwidth()wind_h=getwindowheight()}

}

</script>

关闭功能么?应该是图片一类的吧。

<script>

function

clo()

{

var

div=document.getElementById("div层的Id")

div.style.display="none"

}

<script>

只需要在图片或者按钮上面添加onClick事件就行了。比如:

<input

type="button"

onClick="clo()">

注意display的属性值none一定要用双引号引起来

不然会报错

抱歉,没注意。如果不想调用js也可以这样写

<input

type="button"

onClick="document.getElementById('div层的ID').style.display='none'">