Adding effects
The javafx.scene.effects package contains many classes that allow the adding of various effects to the nodes:
Blend: Combines pixels from two sources (typically images) using one of the pre-definedBlendModesBloom: Makes the input image brighter, so that it appears to glowBoxBlur: Adds blur to an imageColorAdjust: Allows adjustments of hue, saturation, brightness, and contrast to an imageColorInput: Renders a rectangular region that is filled with the given paintDisplacementMap: Shifts each pixel by a specified distanceDropShadow: Renders a shadow of the given content behind the contentGaussianBlur: Adds blur using a particular (Gaussian) methodGlow: Makes the input image appear to glowInnerShadow: Creates a shadow inside the frameLighting: Simulates a light source shining on the content and makes flat objects look more realisticMotionBlur: Simulates the given content seen in motionPerspectiveTransform...