2011-12-02 107 views
0

A虽然回来我开始了一个项目,其中涉及一个页面拼接成一半,任何一方的链接,当翻身时扩大了各自的一面。Flickery鼠标悬停状态

这就是那个例子; http://camoconnell.com/ddu/

自从第一个建筑物以来我发现了这是悬停状态和.stop()函数,但是我试过这些,它没有解决右侧闪烁的问题。提前

任何建议表示欢迎,

感谢

编辑

没有结果试过,更新上面的例子链接相应

$('.change').stop(true,true).hover(

    function() { 
      // do something 

    },function() { 
      // do something 

    } 
); 

回答

0
.stop([clearQueue] [, jumpToEnd])  
clearQueueA Boolean indicating whether to remove queued animation as well. 
Defaults to false. 

jumpToEndA Boolean indicating whether to complete the current animation immediately. Defaults to false. 

尝试使用与真实的一样既ARGS

.stop(true,true) 

http://api.jquery.com/stop/

编辑你想错了

$('.change').hover(

    function() { 
      $(this).stop(true,true); 
      //now do something 

    },function() { 
      // do something 

    } 
); 
+0

曾经尝试这样做(见上面没有结果),感谢 – Cam

+0

编辑答案 – Rafay

+0

好,其功能确定对铬,但行为不正常FF – Cam