org.apache.myfaces.html5.component.properties.effect
Interface TransitionProperties

All Known Implementing Classes:
AbstractAnimation, AbstractAnimations, AbstractEffects, AbstractSlideView, Animation, Animations, Effects, SlideView

public interface TransitionProperties


Method Summary
 String getDelay()
          Duration for animation/effect to wait before running.
 String getDuration()
          Duration for animation/effect to run through.
 String getTimingFunction()
          Timing function to calculate animation/effect transitions.
 

Method Detail

getDuration

@JSFProperty(deferredValueType="java.lang.String")
String getDuration()
Duration for animation/effect to run through.
Value must be in seconds or milliseconds, thus must end with 's' or 'ms'. If not, the value is considered in seconds.
Some of the sample values are:


getTimingFunction

@JSFProperty(deferredValueType="java.lang.String")
String getTimingFunction()
Timing function to calculate animation/effect transitions.
The timing functions defined by CSS3 spec are:


getDelay

@JSFProperty(deferredValueType="java.lang.String")
String getDelay()
Duration for animation/effect to wait before running.
Value must be in seconds or milliseconds, thus must end with 's' or 'ms'. If not, the value is considered in seconds.
Some of the sample values are:



Copyright © 2011 The Apache Software Foundation. All Rights Reserved.