鱼C论坛

 找回密码
 立即注册
查看: 3041|回复: 3

[已解决]为何这个返回顶部没有正常移动出来

[复制链接]
发表于 2022-4-16 22:18:58 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 小黄练编程 于 2022-4-16 22:20 编辑
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .topback{
        position:fixed;
        bottom:50%;
        right:0;
        background-color:green;
}
.topback .toppback {
        position:absolute;
        top:0;
        left:0;
        width:160px;
        height:50px;
    text-align:left;
        line-height:50px;
        background-color:green;
        z-index:-1;
}
.topback i{
        display:inline-block;
     width:50px;
         height:50px;
         text-align:center;
         line-height:50px;
         background-color:green;
         cursor:pointer;
}
    </style>
</head>
<body>
    <div class="topback">
        <span><a href="#"><i></i></a></span>
       <div class="toppback"><a href="#">返回顶部</a></div>
   </div>
   <script src="/js/index.js"></script>
    <script>
        function animate( obj, target, callback){
        clearInterval(obj.timer);
         obj.timer=setInterval(function(){
                 var step=(target-obj.offsetLeft)/10;
                 step=step>0?Math.ceil(step):Math.floor(step);
          if(obj.offsetLeft>=target){
                          clearInterval(obj.timer);
                          if(callback){
                                  callback();
                          }
                  }
                  obj.style.left=obj.offsetLeft+step+'px';
        },30);
}
                   var topback=document.querySelector('.topback');
                   var toppback=document.querySelector('.toppback');
              topback.addEventListener('mouseenter',function(){
                                  animate(toppback,-140);
                          });
    </script>
</body>
</html>
最佳答案
2022-4-16 22:35:13


offsetLeft 偏移量初始为 0,之后递减为 -140,在递减过程  始终大于你的 target = -140 导致 一直满足 if 条件,进入 if 代码卡后定时器被取消 之后又 回调所以不正常

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-4-16 22:35:13 | 显示全部楼层    本楼为最佳答案   


offsetLeft 偏移量初始为 0,之后递减为 -140,在递减过程  始终大于你的 target = -140 导致 一直满足 if 条件,进入 if 代码卡后定时器被取消 之后又 回调所以不正常

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-4-17 17:49:17 | 显示全部楼层
Twilight6 发表于 2022-4-16 22:35
offsetLeft 偏移量初始为 0,之后递减为 -140,在递减过程  始终大于你的 target = -140 导致 一直满足 ...

解决办法是啥,我把>=target改成了=,也没用啊,如何解决啊,一样是输入负的数字。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2022-4-17 17:51:40 | 显示全部楼层
Twilight6 发表于 2022-4-16 22:35
offsetLeft 偏移量初始为 0,之后递减为 -140,在递减过程  始终大于你的 target = -140 导致 一直满足 ...

我擦突然忘了,是两个等于号才对,我刚改了,谢谢
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 15:46

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表