juqery:切换鼠标悬停进出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了juqery:切换鼠标悬停进出相关的知识,希望对你有一定的参考价值。
this is the way for toggling something on mouse hover in and out
// HELL YA $('.unit').hover(function (e) { var isIn = e.type === 'mouseenter', $this = $(this); $this.toggleClass('unit-hover',isIn); $this.find('.thumb a') .children('.thumb_BW').toggleClass('hidden',isIn) .end() . children('.thumb_C').toggleClass('hidden',!isIn); $this.children('.arrow-details').toggleClass('hidden',!isIn); });
以上是关于juqery:切换鼠标悬停进出的主要内容,如果未能解决你的问题,请参考以下文章