gpt4 book ai didi

jquery并行动画

转载 作者:太空宇宙 更新时间:2023-11-04 15:38:03 24 4
gpt4 key购买 nike

我想显示弹出窗口。当用户点击链接时,弹出窗口将显示动画。它会稍微向左移动并同时淡入。我当前的动画代码稍微向左移动但淡入不起作用。这是我的 jquery 代码

showpopup : function (e) {
e.preventDefault();
var continent = $(this).attr('rel'),
pop = $('<div></div>').addClass('popup').html(continent);

pop.insertAfter('#continents').stop().animate({'left': '550px'},100);
pop.fadeIn();
}

这是我的 pop CSS

.popup {
width: 300px; height: 200px;
position: absolute;
left: 580px;
top: 40px;
padding: 5px; background: #ccc;
border-radius: 5px;
z-index: 100;
border: 1px solid #ccc;
}

最佳答案

I created a Fiddle based on your code with a working example.

重要的事情:

pop.animate({'left': '550px', 'opacity': 1}, 500);

这将确保“left”属性的淡出和动画同时完成。

关于jquery并行动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12526980/

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