Hey Leute,
ich habe hier diesen fertigen Script für eine Galerie:
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="de" xml:lang="de"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Galerie 10 ohne Java Script mit transition:left</title>
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">a
* {
margin:0;
padding:0;
list-style:none;
border:none;
outline:none;
}
html,body {
height:10000px;
width:100%;
}
#gal {
margin:30px;
width:4000px;
overflow:hidden;
border:3px double #aaa;
}
#gal #ausgabe {
width:2000px;
float:left;
position:relative;left:0;
-moz-transition: 1s;
-o-transition: 1s;
-webkit-transition: 1s;
}
#gal a {
position:relative;
float:left;
}
#gal a + a + a + a + a img {
margin-right: 0;
width:80px;
height:59px;
}
#gal img {
width:400px;
float:left;
}
#gal a img {
width:79px;
margin: 0 1px 1px 0;
}
#gal a:hover:before , #gal a:focus:before {
content:"";
position:absolute;
top:0;left:0;right:1px;bottom:1px;
background:rgba(255,255,255,.3);
}
}
#gal a:hover ~ #ausgabe , #gal a:focus ~ #ausgabe {
left:0;
}
#gal a + a:hover ~ #ausgabe , #gal a + a:focus ~ #ausgabe {
left:-400px;
}
#gal a + a + a:hover ~ #ausgabe , #gal a + a + a:focus ~ #ausgabe {
position:relative;
left:-800px;
}
#gal a + a + a + a:hover ~ #ausgabe , #gal a + a + a + a:focus ~ #ausgabe {
position:relative;
left:-1200px;
}
#gal a + a + a + a + a:hover ~ #ausgabe , #gal a + a + a + a + a:focus ~ #ausgabe {
position:relative;
left:-1600px;
}
</style>
</head>
<body>
<h1>Galerie 10 ohne Java Script mit transition:left</h1>
<div id="gal">
<a tabindex="0" href="http://www.gipspferd.de/CSS-Experimente/Galerie/galerie10/index.htm#a2"><img src="./Galerie 10 ohne Java Script mit transition_left_files/loewe.jpg" alt="bild1"> </a>
<a tabindex="0" href="http://www.gipspferd.de/CSS-Experimente/Galerie/galerie10/index.htm#a2"><img src="./Galerie 10 ohne Java Script mit transition_left_files/zebra.jpg" alt="bild2"> </a>
<a tabindex="0" href="http://www.gipspferd.de/CSS-Experimente/Galerie/galerie10/index.htm#a3"><img src="./Galerie 10 ohne Java Script mit transition_left_files/ente.jpg" alt="bild3"> </a>
<a tabindex="0" href="http://www.gipspferd.de/CSS-Experimente/Galerie/galerie10/index.htm#a4"><img src="./Galerie 10 ohne Java Script mit transition_left_files/eisbaer.jpg" alt="bild4"> </a>
<a tabindex="0" href="http://www.gipspferd.de/CSS-Experimente/Galerie/galerie10/index.htm#a5"><img src="./Galerie 10 ohne Java Script mit transition_left_files/brunnen1.jpg" alt="bild5"> </a>
<div id="ausgabe">
<img src="./Galerie 10 ohne Java Script mit transition_left_files/loewe.jpg" alt="bild1">
<img src="./Galerie 10 ohne Java Script mit transition_left_files/zebra.jpg" alt="bild2">
<img src="./Galerie 10 ohne Java Script mit transition_left_files/ente.jpg" alt="bild3">
<img src="./Galerie 10 ohne Java Script mit transition_left_files/eisbaer.jpg" alt="bild4">
<img src="./Galerie 10 ohne Java Script mit transition_left_files/brunnen1.jpg" alt="bild5">
</div>
</div>
</body></html>
Alles anzeigen
Wie kann ich diese an eine andere Stelle positionieren?
Freue mich auf eure Antworten!