1 Star 0 Fork 1

Cicy/快乐

forked from 易年帅/快乐 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index4.html 19.89 KB
一键复制 编辑 原始数据 按行查看 历史
易年帅 提交于 2021-01-01 00:32 . hhh
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833
<!doctype html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>媳妇家的大象</title>
<style type="text/css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font: inherit;
font-size: 100%;
vertical-align: baseline;
}
html {
line-height: 1;
}
ol, ul {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle;
}
q, blockquote {
quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none;
}
a img {
border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
display: block;
}
/***********VARIABLES***********/
/*Movement*/
/*Colors*/
/***********STYLES***********/
body {
background-color: #d4e7ba;
}
/*.ele-container {
background: -webkit-linear-gradient(top, rgba(0, 141, 210, 0.63) 0%, transparent 100%);
background: linear-gradient(to bottom, rgba(0, 141, 210, 0.63) 0%, transparent 100%);
height: 500px;
overflow: hidden;
position: relative;
width: 100%;
}*/
.ele-wrapper {
-webkit-animation: ele-movement 1s infinite linear;
animation: ele-movement 1s infinite linear;
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translate3D(-50%, -75%, 0);
-ms-transform: translate3D(-50%, -75%, 0);
transform: translate3D(-50%, -75%, 0);
width: 200px;
}
.ele-body {
-webkit-animation: body-movement 1s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93);
animation: body-movement 1s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93);
background: -webkit-linear-gradient(top, #cfcfcf 0%, #9c9c9c 70%);
background: linear-gradient(to bottom, #cfcfcf 0%, #9c9c9c 70%);
border: 1px solid #808080;
border-radius: 100px 50px 70px 60px;
height: 165px;
position: relative;
width: 100%;
z-index: 1;
}
.ele-tail {
-webkit-animation: tail-movement 1s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93);
animation: tail-movement 1s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93);
border-top: 7px solid #808080;
border-radius: 50%;
height: 50px;
position: absolute;
-webkit-transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
width: 64px;
}
.ele-tail:before {
border-top: 5px solid #C2C2C2;
border-radius: 50%;
content: '';
height: 50px;
position: absolute;
width: 64px;
top: -6px;
}
.ele-head {
-webkit-animation: head-movement 2s infinite linear;
animation: head-movement 2s infinite linear;
background: #C2C2C2;
border-radius: 50%;
border-top: 1px solid #808080;
box-shadow: -1px 1px 2px #808080;
height: 150px;
position: absolute;
-webkit-transform: translate3d(80%, -25%, 0);
transform: translate3d(80%, -25%, 0);
width: 155px;
}
.ele-eyes:before, .ele-eyes:after {
-webkit-animation: eyes-blink 3.5s infinite linear;
animation: eyes-blink 3.5s infinite linear;
background-color: #FDFDFD;
border-radius: 50%;
bottom: -48px;
content: '';
height: 10px;
position: absolute;
width: 10px;
}
.ele-eyebrows {
-webkit-animation: eyebrows-movement 1s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93);
animation: eyebrows-movement 1s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93);
background: -webkit-linear-gradient(bottom, #C2C2C2 20%, #9c9c9c 100%);
background: linear-gradient(to top, #C2C2C2 20%, #9c9c9c 100%);
border-radius: 10px;
border-top: 1px solid #808080;
bottom: 88px;
height: 20px;
left: 92px;
position: absolute;
width: 60px;
}
.ele-eyes {
left: 60%;
position: absolute;
top: 6%;
}
.ele-eyes:before {
left: 41px;
}
.ele-eyes:after {
left: 10px;
}
.ele-ear {
-webkit-animation: ear-movement 1s infinite linear;
animation: ear-movement 1s infinite linear;
background: -webkit-linear-gradient(right, #C2C2C2 10%, darkgray 100%);
background: linear-gradient(to left, #C2C2C2 10%, darkgray 100%);
border-bottom: 1px solid #808080;
border-left: 1px solid #808080;
border-top: 1px solid #808080;
border-radius: 60px 0 0 50%;
height: 110px;
left: -22px;
position: absolute;
top: 25px;
-webkit-transform: rotateZ(-10deg);
transform: rotateZ(-10deg);
width: 60px;
}
.ele-mouth {
-webkit-animation: mouth-movement 1s infinite linear;
animation: mouth-movement 1s infinite linear;
background: -webkit-linear-gradient(top, #C2C2C2 50%, darkgray 100%);
background: linear-gradient(to bottom, #C2C2C2 50%, darkgray 100%);
border-radius: 0px 100% 0px 0px;
border-top: 2px solid #808080;
height: 160px;
left: 83%;
position: absolute;
top: 35%;
width: 30px;
}
.ele-mouth:before {
-webkit-animation: mouth-after-movement 1s infinite linear;
animation: mouth-after-movement 1s infinite linear;
background-color: darkgray;
border-bottom: 1px solid #808080;
border-left: 1px solid #808080;
border-radius: 8px;
bottom: 0;
content: '';
height: 15px;
left: -5px;
position: absolute;
width: 40px;
}
.ele-fang-front, .ele-fang-back {
border-bottom: 12px solid #FFF;
border-radius: 50%;
height: 40px;
position: absolute;
-webkit-transform: rotateZ(20deg);
transform: rotateZ(20deg);
width: 50px;
}
.ele-fang-front {
box-shadow: 0px 1px 0px #808080;
left: 100px;
top: 100px;
}
.ele-fang-front:before {
background-color: #C2C2C2;
bottom: -10px;
content: '';
height: 45px;
left: -5px;
position: absolute;
width: 15px;
}
.ele-fang-front:after {
background-color: #C2C2C2;
border-radius: 0 50% 50% 0;
bottom: -14px;
box-shadow: 1px 1px 0px #808080;
content: '';
height: 21px;
left: 6px;
position: absolute;
-webkit-transform: rotateZ(20deg);
transform: rotateZ(20deg);
width: 15px;
}
.ele-fang-back {
border-bottom-color: #e6e6e6;
left: 115px;
top: 95px;
z-index: -1;
}
.ele-fang-back:before {
background-color: #C2C2C2;
bottom: -10px;
content: '';
height: 25px;
position: absolute;
width: 30px;
}
div[class^="ele-leg-"] {
border-left: 1px solid #808080;
height: 88px;
position: absolute;
width: 50px;
}
div[class^="ele-leg-"]:before {
background-color: rgba(74, 74, 74, 0.53);
border-radius: 50%;
bottom: -30px;
box-shadow: 0 0 2px rgba(74, 74, 74, 0.53);
content: '';
height: 10px;
left: 50%;
position: absolute;
-webkit-transform: translateX(-50%) rotateZ(0deg);
transform: translateX(-50%) rotateZ(0deg);
width: 50px;
}
.ele-leg-front {
background-color: #9c9c9c;
top: 100%;
z-index: 1;
}
.ele-leg-front .ele-foot {
background-color: #9c9c9c;
}
.ele-leg-back {
background-color: #828282;
top: 95%;
}
.ele-leg-back .ele-foot {
background-color: #828282;
}
.ele-leg-back .ele-foot:before, .ele-leg-back .ele-foot:after {
background-color: #bababa;
}
.ele-leg-1 {
-webkit-animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
right: 57.5%;
}
.ele-leg-1:before {
-webkit-animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
}
.ele-leg-1 .ele-foot {
-webkit-animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
}
.ele-leg-2 {
-webkit-animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
right: 67.5%;
}
.ele-leg-2:before {
-webkit-animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
}
.ele-leg-2 .ele-foot {
-webkit-animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
}
.ele-leg-3 {
-webkit-animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
right: 5%;
}
.ele-leg-3:before {
-webkit-animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
}
.ele-leg-3 .ele-foot {
-webkit-animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) -1s;
}
.ele-leg-4 {
-webkit-animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
animation: leg-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
right: 15%;
}
.ele-leg-4:before {
-webkit-animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
animation: foot-shadow-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
}
.ele-leg-4 .ele-foot {
-webkit-animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
animation: foot-animation 2s infinite cubic-bezier(0.63, 0.15, 0.49, 0.93) 0s;
}
.ele-foot:before, .ele-foot:after {
background-color: #E0E0E0;
border-radius: 10px 10px 0 0;
bottom: 0;
content: '';
height: 15px;
position: absolute;
width: 11px;
}
.ele-foot {
border-radius: 25px 25px 35% 40%;
bottom: -17.5px;
box-shadow: -1px 1px 0px #808080;
height: 35px;
left: 50%;
overflow: hidden;
position: absolute;
-webkit-transform: translateX(-49%) rotateZ(0deg);
transform: translateX(-49%) rotateZ(0deg);
width: 55px;
}
.ele-foot:before {
right: -7.5px;
}
.ele-foot:after {
bottom: -3px;
right: 5px;
}
@-webkit-keyframes leg-animation {
0% {
height: 65px;
-webkit-transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
}
25% {
height: 40px;
}
50% {
height: 65px;
-webkit-transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, -15deg) translate3d(0, 30%, 0);
transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, -15deg) translate3d(0, 30%, 0);
}
75% {
height: 65px;
}
100% {
height: 65px;
-webkit-transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
}
}
@keyframes leg-animation {
0% {
height: 65px;
-webkit-transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
}
25% {
height: 40px;
}
50% {
height: 65px;
-webkit-transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, -15deg) translate3d(0, 30%, 0);
transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, -15deg) translate3d(0, 30%, 0);
}
75% {
height: 65px;
}
100% {
height: 65px;
-webkit-transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
transform: translate3d(0, -90%, 0) rotate3d(0, 0, 1, 10deg) translate3d(0, 30%, 0);
}
}
@-webkit-keyframes foot-animation {
0% {
-webkit-transform: translateX(-49%) rotateZ(-10deg);
transform: translateX(-49%) rotateZ(-10deg);
}
15% {
-webkit-transform: translateX(-49%) rotateZ(5deg);
transform: translateX(-49%) rotateZ(5deg);
}
40% {
-webkit-transform: translateX(-49%) rotateZ(0deg);
transform: translateX(-49%) rotateZ(0deg);
}
50% {
-webkit-transform: translateX(-49%) rotateZ(15deg);
transform: translateX(-49%) rotateZ(15deg);
}
100% {
-webkit-transform: translateX(-49%) rotateZ(-10deg);
transform: translateX(-49%) rotateZ(-10deg);
}
}
@keyframes foot-animation {
0% {
-webkit-transform: translateX(-49%) rotateZ(-10deg);
transform: translateX(-49%) rotateZ(-10deg);
}
15% {
-webkit-transform: translateX(-49%) rotateZ(5deg);
transform: translateX(-49%) rotateZ(5deg);
}
40% {
-webkit-transform: translateX(-49%) rotateZ(0deg);
transform: translateX(-49%) rotateZ(0deg);
}
50% {
-webkit-transform: translateX(-49%) rotateZ(15deg);
transform: translateX(-49%) rotateZ(15deg);
}
100% {
-webkit-transform: translateX(-49%) rotateZ(-10deg);
transform: translateX(-49%) rotateZ(-10deg);
}
}
@-webkit-keyframes foot-shadow-animation {
0% {
-webkit-transform: translateX(-50%) rotateZ(-8deg);
transform: translateX(-50%) rotateZ(-8deg);
bottom: -20px;
width: 50px;
}
25% {
bottom: -30px;
width: 40px;
}
50% {
-webkit-transform: translateX(-50%) rotateZ(13deg);
transform: translateX(-50%) rotateZ(13deg);
bottom: -20px;
width: 50px;
}
100% {
-webkit-transform: translateX(-50%) rotateZ(-8deg);
transform: translateX(-50%) rotateZ(-8deg);
bottom: -20px;
width: 50px;
}
}
@keyframes foot-shadow-animation {
0% {
-webkit-transform: translateX(-50%) rotateZ(-8deg);
transform: translateX(-50%) rotateZ(-8deg);
bottom: -20px;
width: 50px;
}
25% {
bottom: -30px;
width: 40px;
}
50% {
-webkit-transform: translateX(-50%) rotateZ(13deg);
transform: translateX(-50%) rotateZ(13deg);
bottom: -20px;
width: 50px;
}
100% {
-webkit-transform: translateX(-50%) rotateZ(-8deg);
transform: translateX(-50%) rotateZ(-8deg);
bottom: -20px;
width: 50px;
}
}
@-webkit-keyframes eyes-blink {
0% {
height: 10px;
}
3% {
height: 1px;
}
5% {
height: 10px;
}
100% {
height: 10px;
}
}
@keyframes eyes-blink {
0% {
height: 10px;
}
3% {
height: 1px;
}
5% {
height: 10px;
}
100% {
height: 10px;
}
}
@-webkit-keyframes ele-movement {
0% {
-webkit-transform: translate3D(-50%, -54%, 0);
transform: translate3D(-50%, -54%, 0);
}
50% {
-webkit-transform: translate3D(-50%, -57%, 0);
transform: translate3D(-50%, -57%, 0);
}
100% {
-webkit-transform: translate3D(-50%, -54%, 0);
transform: translate3D(-50%, -54%, 0);
}
}
@keyframes ele-movement {
0% {
-webkit-transform: translate3D(-50%, -54%, 0);
transform: translate3D(-50%, -54%, 0);
}
50% {
-webkit-transform: translate3D(-50%, -57%, 0);
transform: translate3D(-50%, -57%, 0);
}
100% {
-webkit-transform: translate3D(-50%, -54%, 0);
transform: translate3D(-50%, -54%, 0);
}
}
@-webkit-keyframes mouth-movement {
0% {
height: 160px;
width: 28px;
}
50% {
height: 150px;
width: 30px;
}
100% {
height: 160px;
width: 28px;
}
}
@keyframes mouth-movement {
0% {
height: 160px;
width: 28px;
}
50% {
height: 150px;
width: 30px;
}
100% {
height: 160px;
width: 28px;
}
}
@-webkit-keyframes mouth-after-movement {
0% {
width: 37px;
}
50% {
width: 40px;
}
100% {
width: 37px;
}
}
@keyframes mouth-after-movement {
0% {
width: 37px;
}
50% {
width: 40px;
}
100% {
width: 37px;
}
}
@-webkit-keyframes tail-movement {
0% {
-webkit-transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
}
50% {
-webkit-transform: translate3d(-5%, 65%, 0) rotateZ(-18deg);
transform: translate3d(-5%, 65%, 0) rotateZ(-18deg);
}
100% {
-webkit-transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
}
}
@keyframes tail-movement {
0% {
-webkit-transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
}
50% {
-webkit-transform: translate3d(-5%, 65%, 0) rotateZ(-18deg);
transform: translate3d(-5%, 65%, 0) rotateZ(-18deg);
}
100% {
-webkit-transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
transform: translate3d(-3%, 69%, 0) rotateZ(-20deg);
}
}
@-webkit-keyframes head-movement {
0% {
-webkit-transform: translate3d(80%, -22%, 0) rotateZ(3deg);
transform: translate3d(80%, -22%, 0) rotateZ(3deg);
}
25% {
-webkit-transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
}
50% {
-webkit-transform: translate3d(80%, -23%, 0) rotateZ(-3deg);
transform: translate3d(80%, -23%, 0) rotateZ(-3deg);
}
75% {
-webkit-transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
}
100% {
-webkit-transform: translate3d(80%, -22%, 0) rotateZ(3deg);
transform: translate3d(80%, -22%, 0) rotateZ(3deg);
}
}
@keyframes head-movement {
0% {
-webkit-transform: translate3d(80%, -22%, 0) rotateZ(3deg);
transform: translate3d(80%, -22%, 0) rotateZ(3deg);
}
25% {
-webkit-transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
}
50% {
-webkit-transform: translate3d(80%, -23%, 0) rotateZ(-3deg);
transform: translate3d(80%, -23%, 0) rotateZ(-3deg);
}
75% {
-webkit-transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
transform: translate3d(80%, -22.5%, 0) rotateZ(0deg);
}
100% {
-webkit-transform: translate3d(80%, -22%, 0) rotateZ(3deg);
transform: translate3d(80%, -22%, 0) rotateZ(3deg);
}
}
@-webkit-keyframes body-movement {
0% {
height: 160px;
margin-top: 5px;
}
50% {
height: 162.5px;
margin-top: 2.5px;
}
100% {
height: 160px;
margin-top: 5px;
}
}
@keyframes body-movement {
0% {
height: 160px;
margin-top: 5px;
}
50% {
height: 162.5px;
margin-top: 2.5px;
}
100% {
height: 160px;
margin-top: 5px;
}
}
@-webkit-keyframes ear-movement {
0% {
height: 115px;
}
50% {
height: 110px;
}
100% {
height: 115px;
}
}
@keyframes ear-movement {
0% {
height: 115px;
}
50% {
height: 110px;
}
100% {
height: 115px;
}
}
@-webkit-keyframes eyebrows-movement {
0% {
height: 18px;
}
50% {
height: 20px;
}
100% {
height: 18px;
}
}
@keyframes eyebrows-movement {
0% {
height: 18px;
}
50% {
height: 20px;
}
100% {
height: 18px;
}
}
audio{
display: none;
}
</style>
</head>
<body>
<audio autoplay="autoplay" controls="controls"loop="loop" preload="auto"
src="4.mp3">
</audio>
<div class="ele-container">
<div class="ele-wrapper">
<div class="ele-tail"></div>
<div class="ele-body">
<div class="ele-head">
<div class="ele-eyebrows"></div>
<div class="ele-eyes"></div>
<div class="ele-mouth"></div>
<div class="ele-fang-front"></div>
<div class="ele-fang-back"></div>
<div class="ele-ear"></div>
</div>
</div>
<div class="ele-leg-1 ele-leg-back">
<div class="ele-foot"></div>
</div>
<div class="ele-leg-2 ele-leg-front">
<div class="ele-foot"></div>
</div>
<div class="ele-leg-3 ele-leg-back">
<div class="ele-foot"></div>
</div>
<div class="ele-leg-4 ele-leg-front">
<div class="ele-foot"></div>
</div>
</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Cicy_math_lover/happy.git
git@gitee.com:Cicy_math_lover/happy.git
Cicy_math_lover
happy
快乐
master

搜索帮助