您好,我需要能够确定给定的类是否已经“淡入”:
private void fadeIn() {
// TODO: Check first if class is already shown! otherwise, don't run this as it fade's out when it is run over a already faded in class
$(".hopscotch-bubble").fadeIn(new com.google.gwt.query.client.Function() {
@Override
public void f() {
JSNIHelper.infoNotify("INFO", "Fade in method invoked.");
}
});
}
我怎么做?