朋友们,有谁帮忙修改一下,以下代码在Firefox浏览器中不会飘浮,只是固定在一个位置不动。  <script language=JavaScript> 
//2月14日至3月14日新春活动广告
//图片地址
var img_src = 'images/new.jpg';//连接的网址
var img_url = '#';//图片宽度
var img_w = '300';//图片高度
var img_h = '182';//鼠标移动到图片上显示的文字
var img_alt = '百通新春有礼新用户注册赠送30RMB活动,详情请咨询客服专员!';document.write('<div id=dd style="Z-INDEX: 1; WIDTH: '+img_w+'px; POSITION: absolute; HEIGHT: '+img_h+'px"> <a href="'+img_url+'" onclick=hd()><img src="'+img_src+'" width="'+img_w+'" height="'+img_h+'" border="0" title="'+img_alt+'" onMouseOver="pause_resume();" onMouseOut="pause_resume();"></a></div> ');
var xPos = 500; // 起始横向位置(从左算起,单位象素) 
var yPos = document.body.clientHeight; // 页面本身高度 
var step = 1; 
var delay = 30; // 速度,值越大速度越慢 
var height = 0; 
var Hoffset = 0; 
var Woffset = 0; 
var yon = 0; 
var xon = 0; 
var pause = true; 
var interval; 
dd.style.top = yPos;function changePos() { 
width = document.body.clientWidth; // 判断浏览器窗口的宽度 
height = document.body.clientHeight; // 判断浏览器窗口的高度 
Hoffset = dd.offsetHeight; 
Woffset = dd.offsetWidth; 
dd.style.left = xPos + document.body.scrollLeft; 
dd.style.top = yPos + document.body.scrollTop; 
if (yon) { 
yPos = yPos + step; 

else { 
yPos = yPos - step; 

if (yPos < 0) { 
yon = 1; 
yPos = 0; 

if (yPos >= (height - Hoffset)) { 
yon = 0; 
yPos = (height - Hoffset); 

if (xon) { 
xPos = xPos + step; 

else { 
xPos = xPos - step; 

if (xPos < 0) { 
xon = 1; 
xPos = 0; 

if (xPos >= (width - Woffset)) { 
xon = 0; 
xPos = (width - Woffset); 

}function start_pp() { 
dd.visibility = "visible"; 
interval = setInterval('changePos()', delay); 

function pause_resume() { 
if(pause) {clearInterval(interval);pause = false;} 
else {interval = setInterval('changePos()',delay);pause = true;} 

start_pp();
function hd(){
alert("百通新春有礼,新用户赠送30RMB活动:在活动期间(2月14日至3月14日),新注册百通会员的新用户,资料通过审核后,百通赠送30RMB的金额作为新春厚礼。活动详情请咨询客服专员!");
}
</script>

解决方案 »

  1.   

      <script language=JavaScript>  
    //2月14日至3月14日新春活动广告
    //图片地址
    var img_src = 'images/new.jpg';//连接的网址
    var img_url = '#';//图片宽度
    var img_w = '300';//图片高度
    var img_h = '182';//鼠标移动到图片上显示的文字
    var img_alt = '百通新春有礼新用户注册赠送30RMB活动,详情请咨询客服专员!';document.write('<div id=dd style="Z-INDEX: 1; WIDTH: '+img_w+'px; POSITION: absolute; HEIGHT: '+img_h+'px"> <a href="'+img_url+'" onclick=hd()><img src="'+img_src+'" width="'+img_w+'" height="'+img_h+'" border="0" title="'+img_alt+'" onMouseOver="pause_resume();" onMouseOut="pause_resume();"></a></div> ');
    var xPos = 500; // 起始横向位置(从左算起,单位象素)  
    var yPos = document.body.clientWidth; // 页面本身高度  
    var step = 1;  
    var delay = 30; // 速度,值越大速度越慢  
    var height = 0;  
    var Hoffset = 0;  
    var Woffset = 0;  
    var yon = 0;  
    var xon = 0;  
    var pause = true;  
    var interval;  
    var dd = document.getElementById("dd")
    dd.style.top = yPos;
    //document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop
    function changePos() {  
    width = document.body.clientWidth; // 判断浏览器窗口的宽度  
    height = document.body.clientHeight; // 判断浏览器窗口的高度  
    Hoffset = dd.offsetHeight;  Woffset = dd.offsetWidth;  
    dd.style.left = (xPos + document.body.scrollLeft)+"px";  
    dd.style.top = (yPos + document.body.scrollTop)+"px";  
    if (yon) {  
    yPos = yPos + step;  
    }  
    else {  
    yPos = yPos - step;  
    }  
    if (yPos < 0) {  
    yon = 1;  
    yPos = 0;  
    }  
    if (yPos >= (height - Hoffset)) {  
    yon = 0;  
    yPos = (height - Hoffset);  
    }  
    if (xon) {  
    xPos = xPos + step;  
    }  
    else {  
    xPos = xPos - step;  
    }  
    if (xPos < 0) {  
    xon = 1;  
    xPos = 0;  
    }  
    if (xPos >= (width - Woffset)) {  
    xon = 0;  
    xPos = (width - Woffset);  
    }}function start_pp() {  
    dd.visibility = "visible";  
    interval = setInterval('changePos()', delay);  
    }  
    function pause_resume() {  
    if(pause) {clearInterval(interval);pause = false;}  
    else {interval = setInterval('changePos()',delay);pause = true;}  
    }  
    start_pp();
    function hd(){
    alert("百通新春有礼,新用户赠送30RMB活动:在活动期间(2月14日至3月14日),新注册百通会员的新用户,资料通过审核后,百通赠送30RMB的金额作为新春厚礼。活动详情请咨询客服专员!");
    }
    </script>