8

在这里,我试图让图像在圆形路径中移动,但它没有在圆形路径中移动..我试过这样慢慢移动图片

CSS

#friends { position: absolute; }

标记

<img src="http://jsfiddle.net/img/logo.png" 
id="friends"/>

JS

function moveit() {

    var newTop = Math.floor(Math.random()*350);
    var newLeft = Math.floor(Math.random()*1024);
    var newDuration = Math.floor(Math.random()*5000);

    $('#friends').animate({
      top: newTop,
      left: newLeft,
      }, newDuration, function() {
        moveit();
      });

}

$(document).ready(function() {
    moveit();
});

现场演示:http: //jsfiddle.net/W69s6/embedded/result/

有什么建议吗??

4

3 回答 3

11

另一个变体(基于Div 使用 Javascript 在循环旋转中移动):

var t = 0;

function moveit() {
    t += 0.05;

    var r = 100;         // radius
    var xcenter = 100;   // center X position
    var ycenter = 100;   // center Y position

    var newLeft = Math.floor(xcenter + (r * Math.cos(t)));
    var newTop = Math.floor(ycenter + (r * Math.sin(t)));

    $('#friends').animate({
        top: newTop,
        left: newLeft,
    }, 1, function() {
        moveit();
    });
}

$(document).ready(function() {
    moveit();
});​

DEMO: http://jsfiddle.net/W69s6/20/

于 2012-05-11T12:45:00.840 回答
4

使用 Animate 试试这个:

function animateCircle(id, speed, radius, startx, starty, phi) {  
    if (!phi) { phi = 0 };
    var int = 2 * (Math.PI) / speed;
    phi = (phi >= 2 * (Math.PI)) ? 0 : (phi + int);
    var $m = startx - radius * Math.cos(phi);
    var $n = starty - radius * Math.sin(phi);

    $("#friends").animate({
        marginLeft: $m + 'px',
        marginTop: $n + 'px'
      }, 1, function() { 
             animateCircle.call(this, id, speed, radius, startx, starty, phi) 
          }
    );

};

您可以div像这样调用函数:

animateCircle('#friends', 100, 100, 400, 250);

演示:http: //jsfiddle.net/W69s6/18/

演示 2:http: //jsfiddle.net/W69s6/34/

改编自这里

于 2012-05-11T12:39:41.427 回答
3

看看这个很棒的插件jQuery.path :)

于 2012-05-11T12:35:14.167 回答