Package org.wicketstuff.jwicket.ui.effect

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


    drop2.setDirection(EffectDirection.UP);
    drop2.setMode(EffectMode.SHOW);
    postEffects.add(drop2);
   

    Fold fold1 = new Fold();
    add(fold1);
    fold1.setSpeed(1000);
    fold1.setMode(EffectMode.HIDE);
    fold1.setSize(400);
    postEffects.add(fold1);

    Fold fold2 = new Fold();
    add(fold2);
    fold2.setHorizFirst(false);
    fold2.setSpeed(1000);
    fold2.setMode(EffectMode.SHOW);
    fold2.setSize(300);
    postEffects.add(fold2);


    Highlight highlight1 = new Highlight();
    add(highlight1);
View Full Code Here

TOP

Related Classes of org.wicketstuff.jwicket.ui.effect.Fold

Copyright © 2018 www.massapicom. 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.