【发布时间】:2014-03-28 18:34:37
【问题描述】:
我尝试使用 TweenLite 为某些元素设置动画,但没有成功! console.log 命令有效,没有发生错误,但也没有任何反应。
这是脚本:
<script type="application/javascript">
window.onload = function(){
var back = document.getElementById("back");
var table = document.getElementById("table");
console.log(table);
//TweenLite.to(table,4,{top:"4500px" , height:"0px"});
TweenLite.to(table,4,{top:"4500"});
TweenLite.to(back, 1.5, {width:100});
};
</script>
【问题讨论】:
标签: javascript html animation web gsap