为了账号安全,请及时绑定邮箱和手机立即绑定

jQuery的animate()方法可以实现盒子由方到圆角的动画吗?

jQuery的animate()方法可以实现盒子由方到圆角的动画吗?

正在回答

1 回答

<!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>


0 回复 有任何疑惑可以回复我~
#1

桓桓521

border-radius为什么要加引号?
2016-05-22 回复 有任何疑惑可以回复我~
#2

oldwan 提问者

非常感谢!
2016-05-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
jQuery基础课程
  • 参与学习       154768    人
  • 解答问题       7184    个

加入课程学习,有效提高前端开发速度

进入课程

jQuery的animate()方法可以实现盒子由方到圆角的动画吗?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信