changed colors
This commit is contained in:
parent
38dc307839
commit
1d25cbe797
|
@ -56,9 +56,9 @@ var TagsToTip = true // false or true - if true, HTML elements to be converted
|
|||
// Example: onmouseover="Tip('Tooltip text', LEFT, true, BGCOLOR, '#FF9900', FADEIN, 400)"
|
||||
|
||||
config. Above = false // false or true - tooltip above mousepointer
|
||||
config. BgColor = '#E2E7FF' // Background colour (HTML colour value, in quotes)
|
||||
config. BgColor = '#F5F5F5' // Background colour (HTML colour value, in quotes)
|
||||
config. BgImg = '' // Path to background image, none if empty string ''
|
||||
config. BorderColor = '#003099'
|
||||
config. BorderColor = '#bababa'
|
||||
config. BorderStyle = 'solid' // Any permitted CSS value, but I recommend 'solid', 'dotted' or 'dashed'
|
||||
config. BorderWidth = 1
|
||||
config. CenterMouse = false // false or true - center the tip horizontally below (or above) the mousepointer
|
||||
|
@ -76,7 +76,7 @@ config. FadeOut = 100
|
|||
config. FadeInterval = 30 // Duration of each fade step in ms (recommended: 30) - shorter is smoother but causes more CPU-load
|
||||
config. Fix = null // Fixated position, two modes. Mode 1: x- an y-coordinates in brackets, e.g. [210, 480]. Mode 2: Show tooltip at a position related to an HTML element: [ID of HTML element, x-offset, y-offset from HTML element], e.g. ['SomeID', 10, 30]. Value null (default) for no fixated positioning.
|
||||
config. FollowMouse = true // false or true - tooltip follows the mouse
|
||||
config. FontColor = '#000044'
|
||||
config. FontColor = 'black'
|
||||
config. FontFace = 'Verdana,Geneva,sans-serif'
|
||||
config. FontSize = '8pt' // E.g. '9pt' or '12px' - unit is mandatory
|
||||
config. FontWeight = 'normal' // 'normal' or 'bold';
|
||||
|
@ -87,19 +87,19 @@ config. Left = false // false or true - tooltip on the left of the mouse
|
|||
config. OffsetX = 14 // Horizontal offset of left-top corner from mousepointer
|
||||
config. OffsetY = 8 // Vertical offset
|
||||
config. Opacity = 100 // Integer between 0 and 100 - opacity of tooltip in percent
|
||||
config. Padding = 3 // Spacing between border and content
|
||||
config. Padding = 5 // Spacing between border and content
|
||||
config. Shadow = false // false or true
|
||||
config. ShadowColor = '#C0C0C0'
|
||||
config. ShadowWidth = 5
|
||||
config. ShadowWidth = 2
|
||||
config. Sticky = false // false or true - fixate tip, ie. don't follow the mouse and don't hide on mouseout
|
||||
config. TextAlign = 'left' // 'left', 'right' or 'justify'
|
||||
config. Title = '' // Default title text applied to all tips (no default title: empty string '')
|
||||
config. TitleAlign = 'left' // 'left' or 'right' - text alignment inside the title bar
|
||||
config. TitleBgColor = '' // If empty string '', BorderColor will be used
|
||||
config. TitleFontColor = '#FFFFFF' // Color of title text - if '', BgColor (of tooltip body) will be used
|
||||
config. TitleFontColor = 'black' // Color of title text - if '', BgColor (of tooltip body) will be used
|
||||
config. TitleFontFace = '' // If '' use FontFace (boldified)
|
||||
config. TitleFontSize = '' // If '' use FontSize
|
||||
config. TitlePadding = 2
|
||||
config. TitleFontSize = '10pt' // If '' use FontSize
|
||||
config. TitlePadding = 3
|
||||
config. Width = 0 // Tooltip width; 0 for automatic adaption to tooltip content; < -1 (e.g. -240) for a maximum width for that automatic adaption;
|
||||
// -1: tooltip width confined to the width required for the titlebar
|
||||
//======= END OF TOOLTIP CONFIG, DO NOT CHANGE ANYTHING BELOW ==============//
|
||||
|
|
Loading…
Reference in New Issue