jquery加载图片时以淡入方式显示的方法教程
程序员文章站
2022-06-13 10:46:40
本文实例讲述了jquery加载图片时以淡入方式显示的方法。分享给大家供大家参考。具体实现方法如下:
代码如下:
&...
本文实例讲述了jquery加载图片时以淡入方式显示的方法。分享给大家供大家参考。具体实现方法如下:
代码如下:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title></title>
</head>
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(function(){
$("img[id='load']").load(function(){
$(this).hide();
$(this).fadein(5000);
});
});
</script>
<body>
<p></p>
<p>
<img id="load" src="./images/11_b.jpg" />
</p>
</body>
</html>