Hallo,
wir haben einen Slider auf unserer Page. Bei dem Slider möchte ich gerne die Geschwindikeit reduzieren und ihn so anpassen das er nur von links nach rechts sildet und das im Kreislauf...die Frage ist nur wo muss ich was anpassen?
Hier habe ich mal den Quellcode:
HTML
/* Slider */
.gallery { width:633px; height:345px; margin:0 auto; padding:10px 0;}
#slider { width:633px; height:345px; margin:0 auto; padding:0; list-style:none; }
#slider ul, #slider li { margin:0; padding:0; list-style:none; }
/*
define width and height of list item (slide)
entire slider area will adjust according to the parameters provided here
*/
#slider li { overflow:hidden; margin:0 auto; }
p#controls { margin:0 auto; position:relative; }
#prevBtn { display:block; margin:0; overflow:hidden; width:38px; height:38px; position:absolute; left:10px; top:-55px; }
#nextBtn { display:block; margin:0; overflow:hidden; width:38px; height:38px; position:absolute; left:55px; top:-55px; }
#prevBtn a { display:block; width:38px; height:38px; background:url(images/l_arrow.png) no-repeat 0 0; }
#nextBtn a { display:block; width:38px; height:38px; background:url(images/r_arrow.png) no-repeat 0 0; }
Alles anzeigen