I m trying to create a graceful transition between the images within my photo gallery without using ":hover" or an once of Javascript. (I m still open minded to HTML5)
这种幻觉,即幻灯,应从页数上开始,不需要用户的互动。 然而,我的特别安全局没有适当时间。 理想的情况是,每6秒,当下一个形象开始消失时,目前的形象就开始消失。 估计应在最后的形象之后fin。
我在图像之间 delay误,企图夸大图像,但图像相互重叠太大。 我似乎误解了一些事情。 我的想法如下:
#imgContainer {
height: 205px;
position: relative;
width: 300px;
}
#imgContainer img {
-moz-animation-duration: 12s;
-moz-animation-iteration-count: infinite;
-moz-animation-name: FadeInOut;
-moz-animation-timing-function: ease-in-out;
left: 0;
position: absolute;
}
#imgContainer img:nth-of-type(1) {
-moz-animation-delay: 0s;
}
#imgContainer img:nth-of-type(2) {
-moz-animation-delay: 6s;
}
#imgContainer img:nth-of-type(3) {
-moz-animation-delay: 12s;
}
@-moz-keyframes FadeInOut {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
我确实是新奇,因此将非常赞赏任何形式的援助。