Andere Farben bei Scrollbalken (Programmieren)

Andere Farben bei Scrollbalken (Programmieren)

Ich habe eine kleine Bitte:
Ich hätte gerne den QUELLCODE für die Definierung der Farben beim Scrollbalken!
Siehe SelfHTML
<html>
<body bgcolor=#000000 text=#ffffff link =#ccff88 vlink=ccff88 alink=#ccff88>
<script>
var rate = 333;
// true to start automatically, else false
var DoIt = true
// the three blink colors
var Color1 = "#FF0000"
var Color2 = "#00FF00"
var Color3 = "#0000FF"
// the color if/when turned off
var ColorX = "#C0C0C0"
var i = 0;
function doTriStateRainbow(){
if (document.all){
if (DoIt){
i++;
if (i==1) C = Color1
if (i==2) C = Color2
if (i==3) C = Color3
document.body.style.scrollbarBaseColor = C
if (i>2) i=0;
timer=setTimeout('doTriStateRainbow()', rate)
}else{
document.body.style.scrollbarBaseColor = ColorX
}
}
}
</script>
<body onload="doTriStateRainbow()">
Blinkende Scroll-Leiste aus und an schalten<BR>
<a href="#" onClick="DoIt=false">AUS</a> / <a href="#" onClick="DoIt=true;doTriStateRainbow()">AN</a>
<BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR><BR>
</body></html>

Hier gibts mehr Codes
<STYLE>BODY {
scrollbar-face-color: white;
SCROLLBAR-TRACK-COLOR: white;
scrollbar-arrow-color: white;
scrollbar-base-color: white;
scrollbar-shadow-color : white;
SCROLLBAR-3DLIGHT-COLOR: white;
SCROLLBAR-DARKSHADOW-COLOR: white;
scrollbar-highlight-color: white;
} </STYLE>
@star_sim
kommt das in den header oder in den body?
glaube wohl den head-tag ne?
Logge dich ein um einen Beitrag zu schreiben.