0

Tweener には、「easeOutExpo」タイプのトランジションがあります。Flex イージング クラスで同等のものは何ですか? [1] にリストされていますか?

より多くのコンテキスト:

Tweener コードは次のとおりです。

Tweener.addTween(container, {width:w, height:h, time:0.25, transition:"easeOutExpo"});

これは、easeOutExpo トランジション タイプを使用したいインスタンスです。

        <s:Scale 
                 scaleYFrom=".5" 
                  scaleYTo="1"
                  scaleXFrom=".5"
                  scaleXTo="1"
                  duration="250"
                  autoCenterTransform="true"
                  applyChangesPostLayout="true"
                  />

[1] http://help.adobe.com/en_US/flex/using/WS91E85D63-A025-4c46-B758-A275D4D3B3FC.html

4

1 に答える 1

1

に設定すると、それがPower緩和になります。Tweenerで使用されるアルゴリズムと一致させたい場合は、試行錯誤によって適切な指数を把握する必要があります。easeInFraction0

<fx:Declarations>
    <s:Power
        id='expoEaseOutEquivalent'
        easeInFraction='0'
        exponent='8' />

    <s:Scale
        easer='{expoEaseOutEquivalent}'
        scaleYFrom='.5' 
        scaleYTo='1'
        scaleXFrom='.5'
        scaleXTo='1'
        duration='250'
        autoCenterTransform='true'
        applyChangesPostLayout='true' />
</fx:Declarations>
于 2012-10-29T21:36:48.907 に答える