纯css布局实现会跳舞的啤酒
代码语言:html
所属分类:动画
代码描述:纯css布局实现会跳舞的啤酒
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@import url("https://fonts.googleapis.com/css?family=Cute+Font&display=swap");
html,
body {
width: 100%;
height: 100%;
}
* {
margin: 0;
padding: 0;
}
*:before, *:after {
content: "";
position: absolute;
}
body {
background: #123752;
width: 100%;
height: 100%;
font-family: "Cute Font", cursive;
}
.beer-wrapper {
position: absolute;
width: 70px;
height: 100%;
top: calc(50% - 60px);
left: calc(50% - 60px);
}
.beer {
position: absolute;
width: 70px;
}
.beer__body {
position: relative;
width: 70px;
height: 115px;
border-radius: 4px 4px 20px 20px;
background: #fff;
overflow: hidden;
z-index: 10;
-webkit-animation: body 0.8s infinite ease-in-out;
animation: body 0.8s infinite ease-in-out;
}
.beer__foot {
position: absolute;
top: 105px;
width: 60px;
height: 80px;
}
.beer__foot:before {
bottom: 0px;
width: 15px;
height: 8px;
background: #d91e19;
}
.beer__foot--right {
transform-origin: top right;
-webkit-transform-origin: top right;
border-right: 8px solid #d91e19;
-webkit-animation: right-foot 0.8s 0.4s infinite ease-in-out;
animation: right-foot 0.8s 0.4s infinite ease-in-out;
right: 20px;
}
.beer__foot--right:before {
right: -19px;
-webkit-animation: right-tsumasaki 0.8s 0.4s infinite ease-in-out;
animation: right-tsumasaki 0.8s 0.4s infinite ease-in-out;
}
.beer__foot--left {
transform-origin: top left;
-webkit-transform-origin: top left;
border-left: 8px solid #d91e19;
-webkit-animation: left-foot 0.8s infinite ease-in-out;
animation: left-foot 0.8s infinite ease-in-out;
left: 20px;
}
.beer__foot--left:before {
left: -19px;
-webkit-animation: left-tsumasaki 0.8s infinite ease-in-out;
animation: left-tsumasaki 0.8s infinite ease-in-out;
}
.beer__liquid {
position: absolute;
bottom: 0;
width: 100%;
height: 80%;
background: #f2be44;
z-index: 10;
}
.beer__liquid:before {
width: 69px;
height: 28px;
border-radius: 50%;
top: -10px;
background: #f2be44;
-webkit-animation: beer 2s infinite ease-in-out;
animation: beer 2s infinite ease-in-out;
}
.beer__liquid:after {
width: 70px;
height: 28px;
border-radius: 50%;
top: -10px;
background: #f2be44;
}
.beer:before {
top: 20px;
right: -32px;
width: 50px;
height: 59px;
border: 10px solid #fff;
border-radius: 10px;
box-sizing: border-box;
-webkit-animation: body 0.8s infinite ease-in-out;
animation: body 0.8s infinite ease-in-out;
}
.beer__bubble {
position: absolute;
top: -15px;
right: 0;
width: 33px;
height: 25px;
background: #fff;
border-radius: 50% 50% 0 0;
z-index: 10;
-webkit-animation: body 0.8s infinite ease-in-out;
animation: body 0.8s infinite ease-in-out;
}
.beer__bubble:before {
top: 1px;
right: 29px;
width: 30px;
height: 20px;
background: #fff;
border-radius: 50% 50% 0 0;
}
.beer__bubble:after {
top: 10px;
right: 50px;
width: 20px;
height: 15px;
background: #fff;
border-radius: 50% 50% 0 0;
}
.beer__kiho {
position: absolute;
bottom: 0;
left: 0;
width: 10px;
height: 10px;
background: #fff;
border-radius: 50%;
z-index: 10;
-webkit-transition: 0.8s;
transition: 0.8s;
op.........完整代码请登录后点击上方下载按钮下载查看
网友评论0