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 place

vt. Cast a shadow on; make hazy; track, follow; foreshadow

vi. Gradient; gloomy

adj .Shadow; shadow cabinet; informal

Third person singular: shadows Plural: shadows Present participle: shadowing Past tense: shadowed Past participle: shadowed

color

英['kʌlə(r)] 美[ˈkʌlɚ]

n.<Beauty>color, color; skin color, complexion, blood color; pigment, dye; essence

v.<Beauty> Color...; change the color of...; whitewash, render, color; blush

Third person singular: colors Plural: colors Present participle: coloring Past tense: colored Past participle: colored

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