Package wicket.contrib.mootools.events

Examples of wicket.contrib.mootools.events.MFXWindowLoad.addStyle()


  {
    // window onload event
    MFXWindowLoad load = new MFXWindowLoad();

    // append the style to the window onload event
    load.addStyle(new MFXStyle("margin-left", -400, 0));

    // append event to the element that will have the animation
    Label lbl = new Label("label", "hello world");
    lbl.add(load);
    add(lbl);
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.