加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
style.css 10.32 KB
一键复制 编辑 原始数据 按行查看 历史
Marco 提交于 2023-12-25 15:23 . update style.css.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
@import url(https://fonts.googleapis.com/css?family=Raleway+Dots);
body{
margin: 0;
padding: 0;
background: #33495f;
}
.wrapper{
width: 150px;
height: 150px;
position: absolute;
top: calc(50% - 75px);
left: calc(50% - 75px);
}
.sun{
position: absolute;
bottom: 0px;
right: 0px;
width: 85px;
height: 85px;
background: #f9db62;
border-radius: 360px;
opacity: 1;
animation: sun 10s 0s linear infinite;
}
.cloud{
position: absolute;
bottom: 12px;
left: 8px;
z-index: 2;
opacity: 0;
animation: cloud 10s 0s linear infinite;
}
.cloud .cloud1:not(.c_shadow) ul li{
animation: cloudi 10s 0.1s linear infinite;
}
.cloud .cloud1:not(.c_shadow):before{
animation: cloudi 10s 0s linear infinite;
}
.cloud_s{
position: absolute;
bottom: 70px;
left: 150px;
transform: scale(0.7,0.7) matrix(-1, 0, 0, 1, 0, 0);
z-index: 1;
opacity: 0;
animation: cloud_s 10s 0s linear infinite;
}
.cloud_s .c_shadow{
transform: scale(1.02,1.02);
}
.cloud_vs{
position: absolute;
bottom: 90px;
left: 30px;
transform: scale(0.5,0.5);
z-index: 0;
opacity: 0;
animation: cloud_vs 10s 0s linear infinite;
}
.c_shadow{
z-index: 4 !important;
left: -5px;
bottom: -3px !important;
}
.c_shadow:before{
background: #33495f !important;
}
.c_shadow ul li{
width: 60px !important;
height: 60px !important;
background: #33495f !important;
float: left;
position: absolute;
bottom: -2px !important;
border-radius: 360px;
}
.c_shadow ul li:nth-child(2){
width: 80px !important;
height: 80px !important;
background: #33495f !important;
float: left;
border-radius: 360px;
position: absolute;
bottom: 16px !important;
left: 25px !important;
}
.c_shadow ul li:nth-child(3){
width: 70px !important;
height: 70px !important;
background: #33495f !important;
float: left;
border-radius: 360px;
position: absolute;
bottom: 6px !important;
left: 60px !important;
}
.c_shadow ul li:last-child{
width: 60px !important;
height: 60px !important;
background: #33495f !important;
float: left;
border-radius: 360px;
position: absolute;
bottom: 0px;
left: 90px;
}
.cloud1{
position: absolute;
bottom: 0px;
z-index: 5;
}
.cloud1:before{
content: '';
position: absolute;
bottom: 0px;
left: 28px;
width: 90px;
height: 20px;
background: #fff;
}
.cloud1 ul{
list-style: none;
margin: 0;
padding: 0;
}
.cloud1 ul li{
width: 50px;
height: 50px;
background: #fff;
float: left;
border-radius: 360px;
}
.cloud1 ul li:nth-child(2){
width: 70px;
height: 70px;
background: #fff;
float: left;
border-radius: 360px;
position: absolute;
bottom: 18px;
left: 25px;
}
.cloud1 ul li:nth-child(3){
width: 60px;
height: 60px;
background: #fff;
float: left;
border-radius: 360px;
position: absolute;
bottom: 8px;
left: 60px;
}
.cloud1 ul li:last-child{
width: 50px;
height: 50px;
background: #fff;
float: left;
border-radius: 360px;
position: absolute;
bottom: 0px;
left: 90px;
}
.haze{
background: #33495f;
position: absolute;
bottom: 50px;
left: 0px;
width: 200px;
height: 45px;
z-index: 6;
opacity: 0;
animation: haze 10s 0s linear infinite;
}
.haze_stripe{
background: #a3b5c7;
position: absolute;
bottom: 75px;
left: 20px;
width: 115px;
height: 10px;
z-index: 17;
opacity: 0;
border-radius: 360px;
animation: haze_stripe 10s 0.1s linear infinite;
}
.haze_stripe:nth-child(6){
bottom: 55px;
animation: haze_stripe 10s 0.2s linear infinite;
}
.haze_stripe:last-child{
bottom: 35px;
animation: haze_stripe 10s 0.4s linear infinite;
}
.thunder{
position: absolute;
bottom: 100px;
left: 65px;
width: 12px;
height: 12px;
background: #f9db62;
transform: skew(-25deg);
opacity: 0;
animation: thunder 10s 0s linear infinite;
}
.thunder:before{
content: '';
position: absolute;
top: 11px;
left: 0px;
width: 25px;
height: 8px;
background: #f9db62;
}
.thunder:after{
content: '';
position: absolute;
width: 0;
height: 0;
top: 18px;
right: -14px;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 20px solid #f9db62;
transform: skew(5deg);
}
.rain{
position: absolute;
bottom: 0px;
left: 25px;
}
.rain ul{
list-style: none;
margin: 0;
padding: 0px;
}
.rain ul li{
float: left;
position: absolute;
bottom: 50px;
left: 50px;
margin-left: 20px;
background: #6ab9e9;
height: 40px;
width: 10px;
border-radius: 360px;
transform: rotate(35deg);
opacity: 0;
}
.rain ul li:first-child{
animation: raini 10s 0s linear infinite;
}
.rain ul li:nth-child(2){
animation: rainii 10s 0.2s linear infinite;
}
.rain ul li:last-child{
animation: rainiii 10s 0.4s linear infinite;
}
.sleet{
position: absolute;
bottom: 0px;
left: 25px;
}
.sleet ul{
list-style: none;
margin: 0;
padding: 0px;
}
.sleet ul li{
float: left;
position: absolute;
bottom: 50px;
left: 50px;
margin-left: 20px;
background: #fff;
height: 40px;
width: 10px;
border-radius: 360px;
transform: rotate(35deg);
opacity: 0;
}
.sleet ul li:first-child{
animation: raini 10s 1.0s linear infinite;
}
.sleet ul li:nth-child(2){
animation: rainii 10s 1.4s linear infinite;
}
.sleet ul li:last-child{
animation: rainiii 10s 1.6s linear infinite;
}
.text{
position: absolute;
bottom: 0px;
}
.text ul{
list-style: none;
margin: 0;
padding: 0;
}
.text ul li{
position: absolute;
bottom: -50px;
width: 150px;
color: #fff;
font-family: 'Raleway Dots', cursive;
font-weight: 100;
font-size: 20px;
text-align: center;
opacity: 0;
}
.text ul li:first-child{
animation: fade_in 10.0s 0s linear infinite;
}
.text ul li:nth-child(2){
animation: fade_in 10.0s 1.6s linear infinite;
}
.text ul li:nth-child(3){
animation: fade_in 10.0s 2.4s linear infinite;
}
.text ul li:nth-child(4){
animation: fade_in 10.0s 3.4s linear infinite;
}
.text ul li:nth-child(5){
animation: fade_in 10.0s 4.0s linear infinite;
}
.text ul li:nth-child(6){
animation: fade_in 10.0s 5.4s linear infinite;
}
.text ul li:nth-child(7){
animation: fade_in 10.0s 6.4s linear infinite;
}
.text ul li:nth-child(8){
animation: fade_in 10.0s 7.2s linear infinite;
}
.text ul li:nth-child(9){
animation: fade_in 10.0s 8.2s linear infinite;
}
@keyframes sun{
0%{
opacity: 1;
bottom: 35px;
right: 35px;
}
4%{
bottom: 80px;
right: 80px;
}
4.5%{
bottom: 75px;
right: 75px;
opacity: 1;
}
40%{
opacity: 1;
}
41%{
bottom: 75px;
right: 75px;
opacity: 0;
}
100%{
opacity: 0;
bottom: 0px;
right: 0px;
}
}
@keyframes cloud{
0%{
transform: scale(0.8);
left: 120px;
bottom: 35px;
opacity: 0;
}
2%{
opacity: 1;
}
3.5%{
bottom: 35px;
left: 10px;
opacity: 1;
}
16%{
transform: scale(0.8);
}
18%{
transform: scale(0.95);
}
19%{
transform: scale(0.9);
}
48%{
opacity: 1;
bottom: 35px;
}
50%{
bottom: 70px;
}
64%{
}
96%{
opacity: 1;
}
100%{
opacity: 0;
bottom: 70px;
left: 10px;
}
}
@keyframes cloud_s{
0%{
transform: scale(0.6);
opacity: 0;
bottom: 40px;
left: 18px;
}
23%{
opacity: 0;
}
24%{
opacity: 1;
bottom: 40px;
left: 30px;
}
28%{
opacity: 1;
bottom: 85px;
left: 60px;
}
32%{
transform: scale(0.6);
}
34%{
transform: scale(0.75);
}
35%{
transform: scale(0.7);
}
48%{
opacity: 1;
}
49%{
opacity: 0;
}
100%{
transform: scale(0.7);
opacity: 0;
bottom: 85px;
left: 60px;
}
}
@keyframes cloud_vs{
0%{
opacity: 0;
bottom: 85px;
left: 60px;
}
39%{
opacity: 0;
}
40%{
opacity: 1;
bottom: 85px;
left: 60px;
}
42%{
bottom: 125px;
left: 10px;
}
43%{
bottom: 120px;
left: 15px;
}
48%{
opacity: 1;
}
49%{
opacity: 0;
}
100%{
opacity: 0;
bottom: 120px;
left: 15px;
}
}
@keyframes haze{
0%{
opacity: 0;
}
48%{
height: 0px;
opacity: 0;
}
49%{
height: 45px;
opacity: 1;
}
57%{
opacity:1;
height: 45px;
}
58%{
opacity: 0;
height: 0px;
}
}
@keyframes haze_stripe{
0%{
opacity: 0;
}
48%{
opacity: 0;
}
49%{
opacity: 1;
}
56%{
opacity:1;
}
57%{
opacity: 0;
}
}
@keyframes cloudi{
0%{
background: #fff;
}
56%{
background: #fff;
}
57%{
background: #92a4b6;
}
100%{
background: #92a4b6;
}
}
@keyframes thunder{
0%{
opacity: 0;
bottom: 100px;
left: 65px;
}
62%{
opacity: 0;
bottom: 100px;
left: 65px;
}
64%{
opacity: 1;
bottom: 50px;
left: 60px;
}
65%{
opacity: 1;
bottom: 55px;
left: 61px;
}
72%{
opacity: 1;
bottom: 55px;
left: 61px;
}
73%{
opacity: 0;
}
100%{
opacity: 0;
bottom: 55px;
}
}
@keyframes raini{
0%{
opacity: 0;
bottom: 100px;
left: 60px;
}
72%{
opacity: 0;
bottom: 100px;
left: 60px;
}
73%{
opacity: 1;
bottom: 15px;
left: 50px;
}
74%{
opacity: 1;
bottom: 25px;
left: 52px;
}
80%{
opacity: 1;
bottom: 25px;
left: 52px;
}
81%{
opacity: 0;
bottom: -15px;
left: 6px;
}
100%{
opacity: 0;
bottom: 20px;
}
}
@keyframes rainii{
0%{
opacity: 0;
bottom: 100px;
left: 30px;
}
72%{
opacity: 0;
bottom: 100px;
left: 30px;
}
73%{
opacity: 1;
bottom: 15px;
left: 20px;
}
74%{
opacity: 1;
bottom: 25px;
left: 22px;
}
80%{
opacity: 1;
bottom: 25px;
left: 22px;
}
81%{
opacity: 0;
bottom: -15px;
left: -6px;
}
100%{
opacity: 0;
bottom: 20px;
}
}
@keyframes rainiii{
0%{
opacity: 0;
bottom: 100px;
left: 0px;
}
72%{
opacity: 0;
bottom: 100px;
left: 0px;
}
73%{
opacity: 1;
bottom: 15px;
left: -10px;
}
74%{
opacity: 1;
bottom: 25px;
left: -8px;
}
80%{
opacity: 1;
bottom: 25px;
left: -8px;
}
81%{
opacity: 0;
bottom: -15px;
left: -28px;
}
100%{
opacity: 0;
bottom: 20px;
}
}
@keyframes fade_in{
0%{
opacity: 0;
}
8%{
opacity: 1;
}
9%{
opacity: 1;
}
11%{
opacity: 1;
}
12%{
opacity: 0;
}
100%{
oapcity: 0;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化