用户:你好/common.css:修订间差异
来自Limbo Wiki Mirror
< 用户:你好
小 已从limbowiki:用户:你好/common.css导入3个版本  | 
				小 内容扩充  | 
				||
| 第11行: | 第11行: | ||
	opacity:0;  | 	opacity:0;  | ||
}  | }  | ||
.div-relative {  | |||
    position:relative;   | |||
    width:100%;  | |||
    height:100px  | |||
}  | |||
.div-a {   | |||
    position:absolute;   | |||
    width:auto;  | |||
    height:auto;  | |||
    left:50%;  | |||
    top:50%;  | |||
    transform:translate(-50%,-50%);  | |||
    animation-name: example;  | |||
    animation-duration: 1.5s;  | |||
    animation-iteration-count: infinite;  | |||
    animation-delay: -0.5s;  | |||
}  | |||
.div-b {   | |||
    position:absolute;  | |||
    width:auto;  | |||
    height:auto;  | |||
    left:50%;  | |||
    top:50%;  | |||
    transform:translate(-50%,-50%);  | |||
    animation-name: example;  | |||
    animation-duration: 1.5s;  | |||
    animation-iteration-count: infinite;  | |||
    animation-delay: -1s;  | |||
}  | |||
.div-c {   | |||
    position:absolute;  | |||
    width:auto;  | |||
    height:auto;  | |||
    left:50%;  | |||
    top:50%;  | |||
    transform:translate(-50%,-50%);  | |||
    animation-name: example;  | |||
    animation-duration: 1.5s;  | |||
    animation-iteration-count: infinite;  | |||
    animation-delay: -1.5s;  | |||
}  | |||
        @keyframes example {  | |||
  0%   {z-index:1;}  | |||
  33%  {z-index:-1;}  | |||
  66%  {z-index:-2;}  | |||
  100% {z-index:1;}  | |||
        }  | |||
2025年6月27日 (五) 23:36的版本
.blackbtn {
	position:fixed;
	margin:auto;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background-color:black;
}
.opacity {
	opacity:0;
}
.div-relative {
    position:relative; 
    width:100%;
    height:100px
}
.div-a { 
    position:absolute; 
    width:auto;
    height:auto;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    animation-name: example;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-delay: -0.5s;
}
.div-b { 
    position:absolute;
    width:auto;
    height:auto;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    animation-name: example;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-delay: -1s;
}
.div-c { 
    position:absolute;
    width:auto;
    height:auto;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    animation-name: example;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-delay: -1.5s;
}
        @keyframes example {
  0%   {z-index:1;}
  33%  {z-index:-1;}
  66%  {z-index:-2;}
  100% {z-index:1;}
        }
