Examples of Blind


Examples of org.wicketstuff.jwicket.ui.effect.Blind

     * Prepare a bunch of effects. Need to add them here for header
     * contribution.
     */
    postEffects = new ArrayList<AbstractJqueryUiEffect>();
   
    Blind blindOut = new Blind();
    add(blindOut);
    blindOut.setDirection(EffectHorVerDirection.VERTICAL);
    blindOut.setMode(EffectMode.HIDE);
    blindOut.setSpeed(1000);
    postEffects.add(blindOut);

    Blind blindIn = new Blind();
    add(blindIn);
    blindOut.setDirection(EffectHorVerDirection.HORIZONTAL);
    blindIn.setMode(EffectMode.SHOW);
    blindIn.setSpeed(1000);
    blindIn.setEffectClass("blindInClass");
    postEffects.add(blindIn);


    Bounce bounceHide = new Bounce();
    add(bounceHide);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.