Gets or sets a color of the pane item when the mouse pointer hovers over it.
$au.uploader({ paneItem: { //...other params... hoverColor: "#edf7ff;#edf7ff", //...other params... } })
Type: String
The color of the pane item when the mouse pointer hovers over it.
This element supports linear gradient fills, so this property accepts specifying color in the following format: propertyName: "#aaaaaa;#bbbbbb"
, where #aaaaaa
specifies a top gradient color and #bbbbbb
- a bottom. Both colors should be specified in a hex representation of the RGB triad in HTML-style syntax. If the only one color is set, the element appears solid.
Default value is "#edf7ff;#edf7ff".