使用提示
代码复制后会在网页中生成一个层,可在视图编缉状态下直接修改图片的属性。
总在指定位置的图片
演示效果:请拖动上下左右滑块看看效果
代码提示:按注释修改并复制代码到<body>区
<div id="KBStatic" style="position:absolute; left:3px; top:0px; width:553px; height:70px; z-index:25"> <img src="../114.gif" width="32" height="32"></div> <script language=JavaScript> function KB_keepItInIE(theName,theWantTop,theWantLeft) { theRealTop=parseInt(document.body.scrollTop) theTrueTop=theWantTop+theRealTop document.all[theName].style.top=theTrueTop theRealLeft=parseInt(document.body.scrollLeft) theTrueLeft=theWantLeft+theRealLeft document.all[theName].style.left=theTrueLeft } function KB_keepItInNN(theName,theWantX,theWantY) { theRealLay=document.layers[theName] theBadX=self.pageYOffset theBadY=self.pageXOffset theRealX=theBadX+theWantX theRealY=theBadY+theWantY theRealLay.moveTo(theRealY,theRealX) } IE4=(document.all)?1:0 NN4=(document.layers)?1:0 <!-- 改变下面的KBStatic后的值以确定图片所在的位置--> if (IE4) setInterval('KB_keepItInIE("KBStatic",200,10)',1) if (NN4) setInterval('KB_keepItInNN("KBStatic",200,10)',1) </script>
使用提示
返回目录