| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 541 人关注过本帖
标题:求助修改下关于浮动窗口大小的固定
只看楼主 加入收藏
hkc006
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-5-6
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
求助修改下关于浮动窗口大小的固定
我才开始学习网页,想做一个浮动的小窗口,自己不会写。就在网上复制了一份浮动窗口的代码,当窗口浮动到网页右边缘时会发生如下变化

希望师兄师姐们指教下怎么修改,才能让他到了边缘时不发生变化!在此无比感谢。
<!--浮动广告-->
<style type="text/css">
#fdck {border:1px solid #c0c0c0;margin:0 auto;padding:5px;background:#f0f0f0}
</style>
<body>
<div id="img" style="position: absolute; left: 311; top: 815;visibility :hidden;" onmouseover="clearInterval(interval)" onmouseout="interval = setInterval('changePos()', delay)" align="middle">
 <span style="CURSOR:hand;color:red;font-weight:bold;font-size:12px" onclick="clearInterval(interval);img.style.visibility = 'hidden'">关闭</span>
 <div id="fdck">     
     <ul>   
         <li><b><td><a href="http://www.妙安科技</a>&nbsp</td></b></li>
     </ul>
 </div>
</div>



<script type="text/javascript">
var xPos = 20;
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;                  
img.style.top = yPos;                  
function changePos() {                  
width = document.body.clientWidth;                  
height = document.body.clientHeight;                  
Hoffset = img.offsetHeight;                  
Woffset = img.offsetWidth;                  
img.style.left = xPos + document.body.scrollLeft;                  
img.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() {                  
img.style.visibility = "visible";                 
interval = setInterval('changePos()', delay);                  
}            
start();
</script>
</body>
<!--浮动广告-->
搜索更多相关主题的帖子: position absolute background 网页 
2012-09-26 11:27
szgg520
Rank: 5Rank: 5
等 级:职业侠客
威 望:3
帖 子:79
专家分:307
注 册:2011-6-13
收藏
得分:20 
else {               
xPos = xPos - step;                  
 }                 
 if (xPos < 0) {                  
xon = 1;                  
 xPos = 0;                  
 }        
 if (xPos >= (width - Woffset)) {                  
xon = 0;         
xPos = (width - Woffset);                  
}                  
}
 function start() {                  
img.style.visibility = "visible";                 
 interval = setInterval('changePos()', delay);                  
}            
start();
</script>
 </body>

[url=http://www.]深圳复印机出租[/url]
2012-09-27 22:26
快速回复:求助修改下关于浮动窗口大小的固定
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.014629 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved