CSS Z-index属性 和 @keyframes创建动画

微生俊名
2023-12-01

Z-index属性决定了一个HTML元素的层叠级别。元素层叠级别是相对于元素在Z轴上(与X轴Y轴相对照)的位置而言。一个更高的Z-index值意味着这个元素在叠层顺序中会更靠近顶部

即使Z-index并不是一个难以理解的属性,但它却会因错误的假设而使很多初级的开发人员陷入混乱。混乱发生的原因是因为Z-index只能工作在被明确定义了absolute,fixed或relative 这三个定位属性的元素中。


使用@keyframes规则,你可以创建动画。

创建动画是通过逐步改变从一个CSS样式设定到另一个。

在动画过程中,您可以更改CSS样式的设定多次。

指定的变化时发生时使用%,或关键字"from"和"to",这是和0%到100%相同。

0%是开头动画,100%是当动画完成。


    <div id="background" class="wall"></div>
    <div id="midground" class="wall"></div>
    <div id="foreground" class="wall"></div>


3层云飘动的效果

* { margin: 0; padding: 0; border: 0; } 
html,body{
margin: 0;
}
@-webkit-keyframes STAR-MOVE {
from {
background-position:0% 0%
}
to { 
background-position: 600% 0%
}
}
@keyframes STAR-MOVE {
from {
background-position: 0% 0%
}
to { 
background-position: 600% 0%
}
}
.wall{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;

}
div#background {
background: black url('img/couds/background.png') repeat-x 5% 0%;
background-size: cover;
    z-index: -2;
-webkit-animation: STAR-MOVE 200s linear infinite;
-moz-animation: STAR-MOVE 200s linear infinite;
-ms-animation: STAR-MOVE 200s linear infinite;
animation: STAR-MOVE 200s linear infinite;
}
div#midground{
background:url('img/couds/midground.png')repeat 20% 0%;
z-index: -1;
-webkit-animation: STAR-MOVE  100s linear infinite;
-moz-animation: STAR-MOVE  100s linear infinite;
-ms-animation: STAR-MOVE  100s linear infinite;
animation: STAR-MOVE  100s linear infinite;
}
div#foreground{
background:url('img/couds/foreground.png')repeat 35% 0%;
z-index: 0;
-webkit-animation: STAR-MOVE  50s linear infinite;
-moz-animation: STAR-MOVE  50s linear infinite;
-ms-animation: STAR-MOVE  50s linear infinite;
animation: STAR-MOVE  50s linear infinite;
}



 类似资料: