我在我的网站上使用以下jQuery插件。 (http://jqueryfordesigners.com/demo/plugin-slide-demo.html)。现在,如果仔细检查演示滑块,每次打开标题元素时,底部都会看到轻微的凹凸/反弹。现在我在我的网站上遇到了同样的问题,除了弹跳更糟糕。
如何最小化/消除这种影响?初始化代码是:
$(function () {
$('UL.drawers').accordion({
// the drawer handle
header: 'H2.drawer-handle',
// our selected class
selectedClass: 'open',
// match the Apple slide out effect
event: 'mouseover'
});
});
另外,我如何更改上面的代码,以便'抽屉'当我不将鼠标悬停在任何标题元素(标签)上时,关闭。
谢谢