jQuery 幻灯片效果存在弹跳定位问题
我正在尝试创建一种效果,当鼠标悬停时,从父 div 的底部滑出一个 div,并在幻灯片完成后弹起。
$("#testDiv").hover(function() {
$(".box").stop().slideDown("slow", function() {
$(".box").effect("bounce", {
times: 3, distance: 3
}, 250);
});
}, function() {
$(".box").stop().slideUp();
});
到目前为止,我的代码的小提琴在这里:
有时似乎工作,然后它会以多种不同的方式陷入困境。它要么停止显示,跳到父级 div 的顶部,要么慢慢减小大小。
我很感激任何帮助来产生我正在寻找的效果!
I'm trying to create an effect which, on mouse over, slides out a div from the bottom of a parent div, and bounces once the slide is complete.
$("#testDiv").hover(function() {
$(".box").stop().slideDown("slow", function() {
$(".box").effect("bounce", {
times: 3, distance: 3
}, 250);
});
}, function() {
$(".box").stop().slideUp();
});
A fiddle of my code so far is here:
It sometimes seems to work, then it messes up in a number of different ways. Either it stops showing, jumps to the top of the parent div, or slowly decreases in size.
I'd appreciated any help to produce the effect I'm looking for!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这会对您有所帮助
这里是一个小提琴。
May be this will help you
Here is a fiddle.