<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>icecream</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
background: #afeeee;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.icecream {
position: relative;
height: 900px;
width: 600px;
}
.top {
position: absolute;
border: 3px solid transparent;
width: 300px;
transform: translateX(-50%);
border-radius: 50% 50% 0 10%/40% 40% 0 8%;
}
.top-out {
border-left: 15px solid #ff38b4;
background: #ff69b4;
height: 450px;
top: 100px;
left: 50%;
z-index: 3;
}
.top-in {
background: #fe99ef;
height: 455px;
top: 95px;
left: 55%;
z-index: 1;
border-bottom-right-radius: 10% 8%;
}
.middle {
position: absolute;
background: white;
border: 3px solid transparent;
height: 50px;
width: 335px;
top: 525px;
left: 52%;
transform: translateX(-50%);
border-bottom-left-radius: 10% 70%;
border-bottom-right-radius: 10% 70%;
}
.bottom {
position: absolute;
background: #f4a460;
height: 200px;
width: 50px;
top: 570px;
left: 51%;
transform: translateX(-50%);
border-bottom-left-radius: 50% 10%;
border-bottom-right-radius: 50% 10%;
border-bottom: 30px solid #cd853f;
border-top: 30px solid #cd853f;
z-index: 2;
}
.shadow {
position: absolute;
background: #ff38b4;
height: 250px;
width: 30px;
top: 220px;
border: 10px solid transparent;
z-index: 3;
border-radius: 50%/10%;
}
.shadow1 {
left: 40%;
}
.shadow2 {
right: 38%;
}
</style>
</head>
<body>
<div class="icecream">
<div class="top top-out"></div>
<div class="top top-in"></div>
<div class="middle"></div>
<div class="bottom"></div>
<div class="shadow shadow1"></div>
<div class="shadow shadow2"></div>
</div>
</body>
</html>
css画冰棍儿
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1. 如何以最简单的方式理解用CSS画三角形原理?(自己实验得出的心得结论) 首先要知道一个盒子无宽高,有bord...
- 不知不觉HTML学习暂告一段落,终于到CSS的学习了,学习CSS后可以开始做一些小小项目了,好期待~~ 开始学习C...
- 博为峰小博老师: Hibernate的实例状态分为3种,分别为瞬时状态(Transient)、持久化状态(Pers...