Examples of Bounce


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

    blindIn.setSpeed(1000);
    blindIn.setEffectClass("blindInClass");
    postEffects.add(blindIn);


    Bounce bounceHide = new Bounce();
    add(bounceHide);
    bounceHide.setDistance(100);
    bounceHide.setTimes(3);
    bounceHide.setMode(BounceMode.HIDE);
    bounceHide.setDirection(EffectDirection.RIGHT);
    bounceHide.setSpeed(1000);
    postEffects.add(bounceHide);
   
    Bounce bounceShow = new Bounce();
    add(bounceShow);
    bounceShow.setDistance(100);
    bounceShow.setTimes(3);
    bounceShow.setMode(BounceMode.SHOW);
    bounceShow.setDirection(EffectDirection.LEFT);
    bounceShow.setSpeed(1000);
    postEffects.add(bounceShow);


    Clip clip1 = new Clip();
    add(clip1);
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.