我刚刚试用了 TweenLite,我快要疯了,因为我从网站上复制了代码,但我无法让它动画化。
CSS
.box{
width: 100px;
height: 300px;
background-color: red;
}
html
<div class="box"></div>
JS
setTimeout(function(){
var target = $('.box');
console.log("box = ", target);
TweenLite.to(target, 1, {css:{height:"0px"}});
},2000);
也试过没有css。
setTimeout(function(){
var target = $('.box');
console.log("box = ", target);
TweenLite.to(target, 1, {height:0});
},2000);
是的,我在 jquery 文档就绪方法中有 JS。我还加载了 TweenLite.js。任何人都知道我错过了什么。