zoukankan      html  css  js  c++  java
  • TweenLite属性——.selector

    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});
  • 相关阅读:
    ColorMask
    InfoPanel
    什么是三消游戏
    Display file information in the document window
    Layer Comps
    Add words to your picture
    为什么质数是无穷的?
    嘉年华的来历
    MonoBehaviour.OnValidate
    Loadrunner中百分比模式和Vuser模式
  • 原文地址:https://www.cnblogs.com/cacti/p/4797869.html
Copyright © 2011-2022 走看看