我知道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>
有关文档页面的更多信息。
使用 .animate({any css you want to change}) ,例如
.animate({left:0px})...
这将使元素向左移动,您还可以给过渡时间,例如
.animate({left:0px},200)
其中 200 指定 200 毫秒