gpt4 book ai didi

javascript如何在滚动路线上 move 元素

转载 作者:数据小太阳 更新时间:2023-10-29 06:11:47 25 4
gpt4 key购买 nike

我有一条像垂直蛇一样的路线。 (像这样 http://www.my-favorite-coloring.net/Images/Large/Animals-Reptiles-Snake-31371.png )

我如何通过滚动的 X 和 Y 位置 move 路径上的元素(圆 10x10)?

水平没问题:

    var coin = $('#coin');

$(window).scroll(function(){
var coinTop = coin.css('top'),
cointLeft = coin.css('left');

if($(window).scrollTop() > 100 && $(window).scrollTop() < 600){
$("#coin").css({ "left": contLeft + 'px' });
};
});

但是我如何沿着路线平稳地 move 它呢?

最佳答案

我建议使用矢量 (SVG) 库,即用于动画部分的 raphael.js

在 raphael.js 中,您可以定义一条路径,然后沿该路径的长度为任何对象设置动画。

请查看示例和相应的 stackoverflow 线程以更好地理解:

与线程相比,您需要将动画附加到 onScroll 事件上,而不是将其附加到 Interval。

编辑:

添加来自 link 的相关代码片段,正如评论者所建议的那样:

HTML:

<div id="holder"></div>

JS:

var e;
var myPath;
var animation; //make the variables global, so you can access them in the animation function
window.onload = function() {
var r = Raphael("holder", 620, 420),
discattr = {
fill: "#666",
stroke: "none"
};
function curve(x, y, zx, zy, colour) {
var ax = Math.floor(Math.random() * 200) + x;
var ay = Math.floor(Math.random() * 200) + (y - 100);
var bx = Math.floor(Math.random() * 200) + (zx - 200);
var by = Math.floor(Math.random() * 200) + (zy - 100);
e = r.image("http://openclipart.org/image/800px/svg_to_png/10310/Odysseus_boy.png", x, y, 10, 10);
var path = [["M", x, y], ["C", ax, ay, bx, by, zx, zy]];
myPath = r.path(path).attr({
stroke: colour,
"stroke-width": 2,
"stroke-linecap": "round",
"stroke-opacity": 0.2
});
controls = r.set(
r.circle(x, y, 5).attr(discattr), r.circle(zx, zy, 5).attr(discattr));
}
curve(100,100,200,300,"red");
animation = window.setInterval("animate()", 10); //execute the animation function all 10ms (change the value for another speed)
};
var counter = 0; // a counter that counts animation steps
function animate(){
if(myPath.getTotalLength() <= counter){ //break as soon as the total length is reached
clearInterval(animation);
return;
}
var pos = myPath.getPointAtLength(counter); //get the position (see Raphael docs)
e.attr({x: pos.x, y: pos.y}); //set the circle position
counter++; // count the step counter one up
};

更新:

我最近用过 pathAnimator对于相同的任务。不过要注意性能,复杂的动画可能会非常密集。

关于javascript如何在滚动路线上 move 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21335082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com