jQuery的animate()方法可以实现盒子由方到圆角的动画吗?
jQuery的animate()方法可以实现盒子由方到圆角的动画吗?
jQuery的animate()方法可以实现盒子由方到圆角的动画吗?
2016-05-19
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery animate实现圆角动画</title>
<style type="text/css">
div{width:200px; height:200px; margin:100px; background:pink; border-radius:10px; }
</style>
</head>
<body>
<div></div>
</body>
<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
<script type="text/javascript">
$(function(){
$('div').click(function(){
$(this).animate({'border-radius':'50px'},3000);
})
})
</script>
</html>
举报