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 に答える