后退 刷新 前进 收藏 顶部 |   知道 黑匣子 富媒体 技术服务

滚动到顶部的代码,刚开始隐藏,滚动后就显示

软件应用 技巧 滚动到顶部的代码,刚开始隐藏,滚动后就显示... (shuke.2013-03-09 12:35)
滚动到顶部的代码,刚开始隐藏,滚动后就显示.(舒克)
<script language="javascript">
lastScrollY=0;
function heartBeat(){
var diffY;
if (document.documentElement && document.documentElement.scrollTop)
diffY = document.documentElement.scrollTop;
else if (document.body)
diffY = document.body.scrollTop
else
{/*Netscape stuff*/}
percent=.1*(diffY-lastScrollY);
if(percent>0)percent=Math.ceil(percent);
else percent=Math.floor(percent);
document.getElementById("full").style.top=parseInt(document.getElementById("full").style.top)+percent+"px";
lastScrollY=lastScrollY+percent;
if(lastScrollY<200)
{
document.getElementById("full").style.display="none";
}
else
{
document.getElementById("full").style.display="block";
}
}
var gkuan=document.body.clientWidth;
var ks=(gkuan-960)/2-30;
suspendcode="<div id=\"full\" style='right:"+ks+"px;POSITION:absolute;TOP:200px;z-index:100;width:22px; height:58px;cursor:pointer;padding-top:25px; text-align:center; font-size:12px; line-height:14px; color:#4f576c;'><a onclick='window.scrollTo(0,0);'><img src='http://pic.5tu.cn/uploads/allimg/201110/010P0000240H3940N3-1.jpg'width='20'height='100'></a></div>"
document.write(suspendcode);
window.setInterval("heartBeat()",1);
</script>


☆ 回复1:哈 谢谢啦 !谢谢分享


进度:100% 返回软件应用

htaccess文件(或者"分布式配置文件")的用法.

图片新热点

导航


目录


    站内搜索
    首页 | W3C | ME