This site is designed to guide you through some basic aspects of programming with JavaFX and provide examples, hints, and tips to help you code better.
JavaFX has its own version of many of Java's swing components, one of them is the SwingSlider. The SwingSlider is a simple slider bar tied to a variable. When the slider is moved the linked variable is updated to reflect the new slider position.
This demo displays a palette containing the JavaFX color constants. It can be modified to display any list of colors. For more information on JavaFX colors see: Color.
This interactive demo is designed to demonstrate the JavaFX reflection effect and show how the different reflection variables affect the output. For more information on the the JavaFX reflection effect see: Reflection.
Reflection is one of the most impressive looking effects built into JavaFX. It can be applied to all types of graphical nodes including pictures and videos.
This is a demo of a simple JavaFX color picker. It uses the Color.hsb(hue, saturation, brightness) method to create a full palette of colors to choose from. For more information on JavaFX colors see: Color.