gpt4 book ai didi

jQuery 动画对象看起来像漂浮在水中

转载 作者:行者123 更新时间:2023-11-28 18:03:55 25 4
gpt4 key购买 nike

所以我是 jQuery 的新手,我正在尝试制作漂浮在水中的冰山的连续动画。

这是水面上的冰山..

enter image description here

我想让它有点旋转和摆动,这是我当前的循环动画代码。只需要一些帮助让它做我想做的事哈!

function iceburg() {
jQuery('.iceburg').css({bottom:0});
jQuery('.iceburg').animate ({
bottom: '10px'
}, 200, function() {
jQuery('.iceburg').animate ({
bottom: '0px'
}, 200);
});
}
iceburg();

我不知道我做错了什么以及如何旋转它?有人可以帮忙吗?

最佳答案

尝试

var ice = $('.iceburg');

function anim() {
setInterval(function(){
ice.animate({
top:'+=20'},
{
duration:1000,
step:function()
{ ice.css('-webkit-transform','rotate(-0.5deg)');}
});

ice.animate({
top:'-=20'},
{
duration:1000,
step:function()
{ ice.css('-webkit-transform','rotate(0.5deg)');}
});
});
}

anim();

fiddle http://jsfiddle.net/code_snips/dkFqQ/

关于jQuery 动画对象看起来像漂浮在水中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19954667/

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