私はJQueryについて知っています:
.animate()
cssをどのように組み込むか疑問に思っていましたが?
何か案は?
使用する.animate({//your css})
その後、動作するはずです
.animate({
height: 100,
width: 200,
marginTop: 50
},duration)
ドキュメントから:
.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">» 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>
詳細については、ドキュメント ページを参照してください。