Home  >  Article  >  Web Front-end  >  jquery realizes the universal version of the mouse passing through the fade-in and fade-out effect_jquery

jquery realizes the universal version of the mouse passing through the fade-in and fade-out effect_jquery

WBOY
WBOYOriginal
2016-05-16 16:44:341351browse
Copy code The code is as follows:


//The effect of moving the mouse up
$(".jq_btn").hover(function(){
$(this).find( "div").stop().fadeIn();
},function(){
$(this).find("div").stop().fadeOut();
}) ;

The principle is very simple

a label background setting normal state

div background setting mouse hover background

Just add
Copy code The code is as follows:
class="jq_btn"

All have effects automatically
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn