欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery 淡出一个图像到另一个图像的实现代码

程序员文章站 2022-11-26 23:47:43
jQuery 淡出一张图片到另一张图片,例如有下边的 html:   . 代码如下:

<...

jQuery 淡出一张图片到另一张图片,例如有下边的 html:
 

. 代码如下:


<p class="fade">
<img src="1.jpg" />
</p>



首先,确保 p 的大小和图片大小一样,这个 p 有另一个背景图,如下:

css代码:

. 代码如下:


.fade
{
background-image:url('images/2.jpg');
width:300px;
height:225px;
}



jQuery 代码如下:

. 代码如下:


$(document).ready(function () {
$(".fade").hover(function () {
$(this).find("img").stop(true, true).animate({ opacity: 0 }, 500);
}, function () {
$(this).find("img").stop(true, true).animate({ opacity: 1 }, 500);
});
});



完整实现代码:

. 代码如下:


<p class="fade"><img src="1.jpg" /></p>
<style type="text/css">
.fade
{
background-image:url('2.jpg');
width:300px;
height:225px;
margin:0 auto 15px;
}</style>
<script type="text/javascript">
$(document).ready(function () {
$(".fade").hover(function () {
$(this).find("img").stop(true, true).animate({ opacity: 0 }, 500);
}, function () {
$(this).find("img").stop(true, true).animate({ opacity: 1 }, 500);
});
});
</script>