Aktives Mitglied
Hallo,
ich möchte eine Seite mit CSS-Transitions laden, d.h. der Inhalt wird per CSS eingeblendet.
Unter Firefox und IE läuft das auch ohne Probleme, nur Chrome und Opera (ich denke auch Safari) laden den Inhalt einfach nicht.
Schalte ich die Klasse für die Transitions aus funktioniert es.
Hier mal der Link zur Seite:
1.) mit Transition-Klassen:
http://jb-design-for-web.de/test/css3-js/css-test.html
2. ohne Transition:
http://jb-design-for-web.de/test/css3-js/css-test-2.html
Und hier die CSS-Angaben:
Hat irgendwer eine Ahnung warum das so geschieht und hat villeicht einen Lösungsansatz für mich?
Besten Dank im Voraus
ich möchte eine Seite mit CSS-Transitions laden, d.h. der Inhalt wird per CSS eingeblendet.
Unter Firefox und IE läuft das auch ohne Probleme, nur Chrome und Opera (ich denke auch Safari) laden den Inhalt einfach nicht.
Schalte ich die Klasse für die Transitions aus funktioniert es.
Hier mal der Link zur Seite:
1.) mit Transition-Klassen:
http://jb-design-for-web.de/test/css3-js/css-test.html
2. ohne Transition:
http://jb-design-for-web.de/test/css3-js/css-test-2.html
Und hier die CSS-Angaben:
Code:
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in {
opacity:0; /* make things invisible upon start */
animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
animation-duration:2s;
animation-delay: 1.5s
}
.fade-in2 {
opacity:0; /* make things invisible upon start */
animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
animation-duration:2.5s;
animation-delay: 3.5s
}
.fade-in3 {
opacity:0; /* make things invisible upon start */
animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
animation-duration:3s;
animation-delay: 4.5s
}
Hat irgendwer eine Ahnung warum das so geschieht und hat villeicht einen Lösungsansatz für mich?
Besten Dank im Voraus