.duration(new Duration(100))
.fromValue(0.3)
.toValue(1)
.build();
TranslateTransition moveA = TranslateTransitionBuilder.create()
.byX(leftBounds.getMinX()-rightBounds.getMinX())
.byY(leftBounds.getMinY()-rightBounds.getMinY())
.duration(new Duration(500))
.node(right)
.build();
SequentialTransition a = SequentialTransitionBuilder.create()
.node(right)
.children(fadeOut, moveA, fadeIn)
.build();
TranslateTransition moveB = TranslateTransitionBuilder.create()
.byX(rightBounds.getMinX()-leftBounds.getMinX())
.byY(rightBounds.getMinY()-leftBounds.getMinY())
.duration(new Duration(500))
.node(left)
.build();