我了解JQuery:
.animate()
虽然我想知道如何将css纳入其中?
有什么想法吗?
答案 0 :(得分:2)
使用.animate({//your css})
然后它应该工作
答案 1 :(得分:1)
.animate({
height: 100,
width: 200,
marginTop: 50
},duration)
答案 2 :(得分:0)
使用 .animate({你要改变的任何css}) ,前任
.animate({left:0px})...
这会将元素设置为左侧动画,您也可以为转换提供时间,例如
.animate({left:0px},200)
其中200指定200毫秒秒
答案 3 :(得分: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">» 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>
有关documentation pages的更多信息。