作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我让 div 在页面上随机移动。
我把div换成了“箭头”之类的图片,现在我想让它随机移动,并指向正确的方向,(移动时改变旋转 Angular ),而不是总是向上。
我想移动时可能会旋转一些 Angular ,但我不知道如何计算旧点和新点之间的 Angular 。
提前致谢!!!
最佳答案
试试这个
$(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();
});
};
关于jquery - 如何让图片在页面中随机移动并在移动时旋转 Angular (使用jQuery或CSS),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13340480/
我是一名优秀的程序员,十分优秀!