欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jQuery 自定义动画

程序员文章站 2024-03-25 14:43:34
...
<style type="text/css">
			div{
				width: 60px;
				height: 30px;
				background: red;
			}
		</style>
	</head>
	<body>
		<div></div>
	</body>
	<script src="js/jquery-1.12.4.min.js"></script>
	<script src="js/jquery.easing.1.3.js"></script>
	<script>
		/*自定义动画效果,样式只能设置一个值,
		 * 例如设置字体大小,只能使用fontSize而不能用font,
		 * 设置的样式有限具体参考
		 * http://www.w3school.com.cn/jquery/effect_animate.asp*/
		// animate({}, [speed, [e], [fn]])
		$('div').on('mouseover',function(){
			$(this).animate({width:200,height:200},'slow','',function(){
				$(this).animate({width:60,height:30},'slow',function(){
				});
			});
		});
	</script>