lungentorpedo
Neues Mitglied
halllo,
Habe mit css und animation eine slideshow im hintergrund des body elements gemacht leider funktioniert das nur in 'chrome'.
MEINE WEBSITE: aqua-wirbellose.de
hier mein code:
einfach mal die website in chrome öffnen, hier sihts so au wies soll, und dann in firefox, internet exploerer und opera
wer ne lösung hätte oder einen lösungsansatz bitte melden
Lunge
Habe mit css und animation eine slideshow im hintergrund des body elements gemacht leider funktioniert das nur in 'chrome'.
MEINE WEBSITE: aqua-wirbellose.de
hier mein code:
Code:
body
{
position:absolute;
background:url(home.JPG);
left:0px;
top:0px;
background-size:100% 100%;
background-repeat:no-repeat;
animation:dia;
animation-duration:20s;
animation-delay:5s;
animation-interation-count:infinite;
-webkit-animation:dia;
-webkit-animation-duration:35s;
-webkit-animation-delay:10s;
-webkit-animation-iteration-count: infinite;
}
@keyframes dia
{
0% {position:absolute; background:url(home.JPG); background-size:100% 100%; background-repeat:no-repeat;}
25% {position:absolute; background:url(home2.JPG); background-size:100% 100%; background-repeat:no-repeat;}
50% {position:absolute; background:url(home3.JPG); background-size:100% 100%; background-repeat:no-repeat;}
75% {position:absolute; background:url(home4.JPG); background-size:100% 100%; background-repeat:no-repeat;}
100% {position:absolute; background:url(home.JPG); background-size:100% 100%; background-repeat:no-repeat;}
}
@-webkit-keyframes dia
{
0% {position:absolute; background:url(home.JPG); background-size:100% 100%; background-repeat:no-repeat;}
14% {position:absolute; background:url(home2.JPG); background-size:100% 100%; background-repeat:no-repeat;}
28% {position:absolute; background:url(home3.JPG); background-size:100% 100%; background-repeat:no-repeat;}
42% {position:absolute; background:url(home4.JPG); background-size:100% 100%; background-repeat:no-repeat;}
56% {position:absolute; background:url(home5.JPG); background-size:100% 100%; background-repeat:no-repeat;}
70% {position:absolute; background:url(home6.JPG); background-size:100% 100%; background-repeat:no-repeat;}
84% {position:absolute; background:url(home7.JPG); background-size:100% 100%; background-repeat:no-repeat;}
98% {position:absolute; background:url(home.JPG); background-size:100% 100%; background-repeat:no-repeat;}
}
einfach mal die website in chrome öffnen, hier sihts so au wies soll, und dann in firefox, internet exploerer und opera
wer ne lösung hätte oder einen lösungsansatz bitte melden
Lunge