1
我試圖使用TweenLite爲一些元素設置動畫,但它不起作用! console.log命令有效,沒有錯誤發生,但沒有任何反應。TweenLite動畫無法正常工作
這是腳本:
<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>