gpt4 book ai didi

javascript - 使用 Raphael.js 库将文本和图像一起移动..??

转载 作者:行者123 更新时间:2023-11-30 18:48:10 28 4
gpt4 key购买 nike

我想要一个移动的图像和一个移动的文本。所以当我移动图像时,文本也会一起移动!!我该怎么做呢?我已经使用此代码使图像移动,但如何添加文本?​​?

var R = Raphael("hello_world", 800, 800),

elipse = R.image("mioo.jpg",100,200,100,300);

var start = function () {
this.ox = this.attr("x");
this.oy = this.attr("y");
this.animate({r: 70, opacity: .25}, 500, ">");
},
move = function (dx, dy) {
this.attr({x: this.ox + dx, y: this.oy + dy});
},
up = function () {
this.animate({r: 50, opacity: .5}, 500, ">");
};

elipse.drag(move, start, up);

最佳答案

看看How can I combine objects in the Raphael javascript library?它告诉您您需要知道的一切,甚至更多。

关于javascript - 使用 Raphael.js 库将文本和图像一起移动..??,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4777605/

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