jQuery Rollover

时间:2012-04-16 21:31:36

标签: jquery rollover

我只是隐藏并在翻滚时显示产品描述,这可以做得更好吗?

当鼠标进出时它有点小虫子

$("a.roll-over-trigger").hover(
   function() {
      $(this).next('.altProduct p').slideDown('300');
   },
   function() {
      $(this).next('.altProduct p').slideUp('300');
   }
);

a.roll-over-trigger是图像本身

和.altProduct p在悬停时会滑动超过一半的图像。

这是一个链接http://tinyurl.com/d8dxd47

由于

1 个答案:

答案 0 :(得分:0)

您没有提供任何示例,只是猜测

$("a.roll-over-trigger").on('hover', function(e) {
    $(this).next('.altProduct').find('p').slideToggle('medium');
});

An example here.