滚动上的动画图像

发布于 2024-12-13 09:19:06 字数 211 浏览 0 评论 0原文

我想在滚动时循环浏览图像的帧,以给出当您向下滚动页面时对象顺时针旋转,然后当您向上滚动时逆时针旋转的效果。我已经将 Jquery Waypoints 插件视为一种可能的方法,但想知道是否有人知道一种更干净的方法来做到这一点。

谢谢!

I'm wanting to cycle through the frames of an image on scroll to give the effect of an object spinning clockwise as you scroll down the page, then anticlockwise as you scroll up. I've looked at Jquery Waypoints plugin as a possible way of doing this but wondered if anyone knew of a cleaner way of doing this.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山人契 2024-12-20 09:19:06

我制作了一个快速脚本,以百分比显示当前滚动位置。
我认为这是一个很好的开始工作基础:

$(function(){ 
    var ms = $(document).height() - $(window).height();

    $(window).scroll(function(){

       var percent = Math.round($(window).scrollTop() / ms * 100); 
    });
});

演示:
http://jsfiddle.net/Z6bxD/

I made a quick script which shows the current scroll position in percent.
I think it's a good base to start working from:

$(function(){ 
    var ms = $(document).height() - $(window).height();

    $(window).scroll(function(){

       var percent = Math.round($(window).scrollTop() / ms * 100); 
    });
});

demo:
http://jsfiddle.net/Z6bxD/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文