为了账号安全,请及时绑定邮箱和手机立即绑定

屏幕跟随人物滚动往下

屏幕跟随人物滚动往下

浮云间 2018-08-15 10:10:06
点击按钮,人物沿着路径往下走,屏幕也跟随滚动,怎么实现啊https://www.heshidai.com/xsrw/index.html
查看完整描述

1 回答

?
12345678_0001

TA贡献1802条经验 获得超5个赞

這邊利用 jQuery 的 animate 來實現動畫,只要就是預先設置好幾個路徑點,讓他依照這些路徑點走,而捲軸滾動則是靠著 animate 的 progress 回調,在播放動畫時持續監測捲軸位置是否小於物體的位置

var animations = [
    {        x: 100,        y: 100
    },
    {        x: 150,        y: 300
    },
    {        x: 300,        y: 800
    }
]var $box = $('.box')for(var i = 0, len = animations.length ; i < len ; i++) {
    $box.animate({        top: animations[i].y,        left: animations[i].x
    }, {        duration: 2000,        progress: function() {            if($(document).scrollTop() < $box.offset().top) {                // 讓捲軸滾動到物體居中的狀態
                $(document).scrollTop($box.offset().top - window.innerHeight / 2)
            }
        }
    })
}

實現

jsFiddle


查看完整回答
反对 回复 2018-09-20
  • 1 回答
  • 0 关注
  • 693 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信