jQuery 淡出一个图像到另一个图像的实现代码
更新时间:2013年06月12日 12:34:14 作者:
这篇文章主要介绍了jquery的hover事件实现两个图片的淡出切换效果,需要的朋友可以参考下
jQuery 淡出一张图片到另一张图片,例如有下边的 html:
<div class="fade">
<img src="1.jpg" />
</div>
首先,确保 div 的大小和图片大小一样,这个 div 有另一个背景图,如下:
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);
});
});
完整实现代码:
<div class="fade"><img src="1.jpg" /></div>
<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>
作者:jQuery学习
复制代码 代码如下:
<div class="fade">
<img src="1.jpg" />
</div>
首先,确保 div 的大小和图片大小一样,这个 div 有另一个背景图,如下:
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);
});
});
完整实现代码:
复制代码 代码如下:
<div class="fade"><img src="1.jpg" /></div>
<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>
作者:jQuery学习
相关文章
jQuery获得包含margin的outerWidth和outerHeight的方法
这篇文章主要介绍了jQuery获得包含margin的outerWidth和outerHeight的方法,涉及jQuery中outerWidth及outerHeight方法的使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下2015-03-03jquery插件如何使用 jQuery操作Cookie插件使用介绍
本文将介绍jQuery如何操作Cookie插件,需要了解的朋友可以参考下2012-12-12JS和JQUERY获取页面大小,滚动条位置,元素位置(示例代码)
这篇文章主要是对JS和JQUERY获取页面大小,滚动条位置,元素位置的示例代码进行了介绍。需要的朋友可以过来参考下,希望对大家有所帮助2013-12-12
最新评论