gpt4 book ai didi

jquery - 如何让图片在页面中随机移动并在移动时旋转 Angular (使用jQuery或CSS)

转载 作者:可可西里 更新时间:2023-11-01 13:14:20 24 4
gpt4 key购买 nike

我让 div 在页面上随机移动。

old question

我把div换成了“箭头”之类的图片,现在我想让它随机移动,并指向正确的方向,(移动时改变旋转 Angular ),而不是总是向上。

arrow

我想移动时可能会旋转一些 Angular ,但我不知道如何计算旧点和新点之间的 Angular 。

提前致谢!!!

enter image description here

最佳答案

试试这个

$(document).ready(function(){
animateIMG();

});

function makeNewPosition(){

// Get viewport dimensions (remove the dimension of the div)
var h = $(window).height() - 50;
var w = $(window).width() - 50;

var nh = Math.floor(Math.random() * h);
var nw = Math.floor(Math.random() * w);

return [nh,nw];

}

function animateIMG(){
var newq = makeNewPosition();
$('img').animate({ top: newq[0], left: newq[1] }, function(){
animateIMG();
});

};

JsFiddle带速度控制 http://jsfiddle.net/D6Svc/

关于jquery - 如何让图片在页面中随机移动并在移动时旋转 Angular (使用jQuery或CSS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13340480/

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