<html>
<head>
<style type= "text/css" >
body {
background : #000a2d ;
}
.div 2 {
position : absolute ;
z-index : 2 ;
left : 40px ;
top : 40px ;
font-weight : bold ;
height : 400px ;
width : 400px ;
animation: myfirst 2 15 s infinite linear;
}
.div 3 {
position : absolute ;
z-index : 3 ;
left : 11% ;
top : 22% ;
font-weight : bold ;
color : #fff ;
background : red ;
}
@keyframes myfirst 2
{
from {transform: rotate( 0 deg);}
to {transform: rotate( 359 deg);}
}
@keyframes myfirst
{
from {transform: rotate( 0 deg);}
to {transform: rotate( -359 deg);}
}
</style>
</head>
<body>
<div class= "div3" >最上层</div>
<div class= "div2" ><img src= "./centerBg3.png" style= "width:100%;height:100%;" ></div>
</body>
</html>
|