0

我知道JQuery:

.animate()

虽然我想知道如何将 css 合并到其中?

有任何想法吗?

4

4 回答 4

2

利用.animate({//your css})

然后它应该工作

于 2013-06-30T15:20:49.407 回答
1
.animate({
    height: 100,
    width: 200,
    marginTop: 50
},duration)
于 2013-06-30T15:21:44.003 回答
0

从文档:

.animate( properties [, duration ] [, easing ] [, complete ] )

描述:执行一组 CSS 属性的自定义动画。

$("#block").animate({width: "70%",}, 1500 );
Object with CSS properties ----^      ^--- Milliseconds

例子

<!DOCTYPE html>
<html>
<head>
  <style>
div {
background-color:#bca;
width:100px;
border:1px solid green;
}
</style>
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
  <button id="go">&raquo; Run</button>

<div id="block">Hello!</div>
<script>

/* Using multiple unit types within one animation. */

$("#go").click(function(){
  $("#block").animate({
    width: "70%",
    opacity: 0.4,
    marginLeft: "0.6in",
    fontSize: "3em",
    borderWidth: "10px"
  }, 1500 );
});
</script>

</body>
</html>

有关文档页面的更多信息。

于 2013-06-30T15:39:36.683 回答
0

使用 .animate({any css you want to change}) ,例如

.animate({left:0px})...

这将使元素向左移动,您还可以给过渡时间,例如

.animate({left:0px},200) 

其中 200 指定 200 毫秒

于 2013-06-30T15:25:57.833 回答