Scrollup & down
lima-city → Forum → Die eigene Homepage → HTML, CSS & Javascript
-
Ich h?tte gern auf meinr Homepage so scrollbalken wie auf dieser seite
http://www.be-seite.de
aber ich weiss nicht wie ich das machen kann..
k?nnst ihr mir da helfen ??? -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
Hi, kann dir weiterhelfen:
folgendes muss zwischen
</head> und <body>
<style type="text/css">
#divUpControl{position:absolute; width:20; left:10; top:10; z-index:1; text-align: right}
#divDownControl{position:absolute; width:20; left:10; top:345; z-index:1; text-align: right}
#divContainer{position:absolute; width:800; height:370; overflow:hidden; top:30; left:60; clip:rect(0,800,360,0); visibility:hidden}
#divContent{position:absolute; top:0; left:0}
</style>
<script language="JavaScript">// begin absolutely positioned scrollable area object scripts
function verifyCompatibleBrowser(){
this.ver=navigator.appVersion
this.dom=document.getElementById?1:0
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
this.ie4=(document.all && !this.dom)?1:0;
this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
this.ns4=(document.layers && !this.dom)?1:0;
this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
return this
}
bw=new verifyCompatibleBrowser()
var speed=50
var loop, timer
function ConstructObject(obj,nest){
nest=(!nest) ? '':'document.'+nest+'.'
this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0;
this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0;
this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight
this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight
this.up=MoveAreaUp;this.down=MoveAreaDown;
this.MoveArea=MoveArea; this.x; this.y;
this.obj = obj + "Object"
eval(this.obj + "=this")
return this
}
function MoveArea(x,y){
this.x=x;this.y=y
this.css.left=this.x
this.css.top=this.y
}
function MoveAreaDown(move){
if(this.y>-this.scrollHeight+objContainer.clipHeight){
this.MoveArea(0,this.y-move)
if(loop) setTimeout(this.obj+".down("+move+")",speed)
}
}
function MoveAreaUp(move){
if(this.y<0){
this.MoveArea(0,this.y-move)
if(loop) setTimeout(this.obj+".up("+move+")",speed)
}
}
function PerformScroll(speed){
if(initialised){
loop=true;
if(speed>0) objScroller.down(speed)
else objScroller.up(speed)
}
}
function CeaseScroll(){
loop=false
if(timer) clearTimeout(timer)
}
var initialised;
function InitialiseScrollableArea(){
objContainer=new ConstructObject('divContainer')
objScroller=new ConstructObject('divContent','divContainer')
objScroller.MoveArea(0,0)
objContainer.css.visibility='visible'
initialised=true;
}
// end absolutely positioned scrollable area object scripts
</script>
und das hier kommt in den body:
<!-- begin absolutely positioned scrollable area object-->
<div id="divUpControl"> <a href="javascript:;" onMouseOver="PerformScroll(-7)" onMouseOut="CeaseScroll()"><img src="images/nachoben.gif" border="0">
</a> </div>
<div id="divDownControl"> <a href="javascript:;" onMouseOver="PerformScroll(7)" onMouseOut="CeaseScroll()"><img src="images/nachunten.gif" border="0">
</a> </div>
<div id="divContainer">
<div id="divContent">
Dein Seiteninhalt
</span>
</div>
</div>
<!-- end absolutely positioned scrollable area object -->
Das ganze musst du halt noch auf die gr??e deiner seite anpassen, das geht mit ein bisschen geduld relativ einfach, habs auch hinbekommen. -
?h, danke erstmal f?rs antworten :)
leida bin ich irgendwie zu doof.... ich hab glaub ich allles so gemacht wie dus geschrieben hast aber bei mir kommt nur das bei raus..
http://pixelchen.piranho.com/webring4/ayfb.htm
den text sieht man gar nicht.., *???h* garnixpeil -
du sollst ja auch den ersten teil des scipts zwischen </head> und <body> setzten
-
hmm... hab ich das nicht ?
wart hier ist mein code
http://pixelchen.piranho.com/webring4/sc.htm
der ist doch zwischen </HTML>
und <body> `?? -
Lag wohl an de ganzen Zeilen mit dem <div> Frag mich nicht warum.
http://sebbel.xardas.lima-city.de/test.html
Wenn du weitere fragen hast zur konfiguration steh ich dir mit rat und tat zur verf?gung. Am besten im ICQ adden -
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage