本文介绍了在页面加载时淡入div的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
页面加载时我需要一个div来淡入。
I need a div to fade in when the page loads.
<div id=monster></div>
我已经在使用jquery FYI。
Im already using jquery FYI.
在此先感谢。
推荐答案
这不可能更简单:
$(function(){ // $(document).ready shorthand
$('#monster').fadeIn('slow');
});
如果你的div最初没有被隐藏,你可以在动画之前隐藏它:
If your div is not initially hidden, you could hide it before the animation:
$('#monster').hide().fadeIn('slow');
速度参数可以是'慢'
,'normal'
,'fast'
或运行动画的毫秒数。
The speed parameter can be 'slow'
, 'normal'
, 'fast'
or the number of milliseconds to run the animation.
这篇关于在页面加载时淡入div的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!