Home > Web Front-end > JS Tutorial > body text

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

WBOY
Release: 2016-05-16 16:44:34
Original
1350 people have browsed it
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
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template