标签:
TweenLite.selector : * = document.getElementById()
TweenLite选择工具:当一个元素被选为目标时使用,例如: TweenLite.to("#myID", 1, {x:"100px"}),意为:选择id为myID的元素。
详细描述:
jQuery, Zepto, Sizzle, 甚至你自己的都可以使用在TweenLite中。
只需这样设置:
TweenLite.selector = YOUR_SELECTOR_ENGINE;
如果加载了jQuery,你可以使用class值来选择元素,例如:
TweenLite.to(".myClass", 2, {boxShadow:"0px 0px 20px red", color:"#FC0"});
如果没有加载了jQuery,你可以使用id值来选择元素,例如:
TweenLite.to("#myClass", 2, {boxShadow:"0px 0px 20px red", color:"#FC0"});
当你需要多次选择元素时,你可以使用一下方式使选择更迅速(加载jQuery的情况下):
var target = $(".myClass");
TweenLite.to(target, 2, {left:"100px"});
TweenLite.to(target, 2, {top:"200px", delay:2});
标签:
原文地址:http://www.cnblogs.com/cacti/p/4797869.html