scrollbar
UK[skrəʊba:] US[skroʊba:]
Scroll bar, scroll bar
dark
英[dɑ:k] 美[dɑ:rk]
adj.Dark; jet-black; melancholy; mysterious
n.Dark; dark ;Darkest
Comparative: darker Superlative: darkest
shadow
##英[ˈʃædəʊ] 美[ˈʃædoʊ] n. Shadow; shadow; ghost, ghost; hiding placevt. Cast a shadow on; make hazy; track, follow; foreshadowvi. Gradient; gloomyadj .Shadow; shadow cabinet; informalThird person singular: shadows Plural: shadows Present participle: shadowing Past tense: shadowed Past participle: shadowedcolor
javascript scrollbarDarkShadowColor属性 syntax
Function:Set the color of the right and bottom sides of arrows and scroll bars.
Syntax: Object.style.scrollbarDarkShadowColor=color
Notes: Can be used together with scrollbarShadowColor to set the shadow effect of the scroll bar.
javascript scrollbarDarkShadowColor属性 example
<html> <head> <script type="text/javascript"> function setScrollbarDarkShadowColor() { document.body.style.scrollbarDarkShadowColor="darkred"; } </script> </head> <body> <input type="button" onclick="setScrollbarDarkShadowColor()" value="Set ScrollbarDarkShadowColor" /> </body> </html>
Run instance »
Click the "Run instance" button to view the online instance