jQuery动画相关函数

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">// <![CDATA[
/*$('div').click(function(){
	$(this).hide(2000);
});*/

/*$('div').click(function(){
	$(this).delay(800).slideUp(800).delay(800).slideDown(800);
});*/
/* $('div').click(function(){
 	$(this).fadeOut(2000,function(){
 		$(this).fadeIn(2000);
 	});
 });
*/

var param ={'width':'200px'}
$('div').animate(param,1000);
// ]]></script>

 

jquery动画

 
posted @ 2020-02-12 13:35  安东先生  阅读(91)  评论(0编辑  收藏  举报