Posted in Javascript onJanuary 14, 2015
本文实例讲述了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> <div></div> <div> <img id="load" src="./images/11_b.jpg" /> </div> </body> </html>
希望本文所述对大家的jQuery程序设计有所帮助。
jquery加载图片时以淡入方式显示的方法
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@