HTML代码:
“`html
<div class=”pop-up”>
<div class=”container”>
<div class=”apple”></div>
<div class=”orange”></div>
<div class=”yellow”></div>
</div>
</div>
CSS代码:
“`css
.pop-up {
position: relative;
width: 300px;
height: 200px;
.container {
position: absolute;
top: 0;
left: 0;
width: 300px;
height: 200px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 50%;
.apple,
.orange,
.yellow {
position: absolute;
top: 50%;
left: 25%;
transform: translate(-50%, -25%);
width: 100px;
height: 100px;
background-color: #f00;
.apple {
top: 0;
left: 25%;
transform: translateX(25%);
.orange {
top: 50%;
left: 0;
transform: translateX(-50%);
.yellow {
top: 0;
left: 50%;
transform: translateX(-50%);
.pop-up:before,
.pop-up:after {
content: “”;
position: absolute;
top: 0;
left: 50%;
width: 100px;
height: 100px;
background-color: #f00;
transform: translateX(-50%);
.pop-up:before {
top: -50px;
.pop-up:after {
top: 0;
.pop-up:hover:before,
.pop-up:hover:after {
animation: pop-up 1s linear infinite;
@keyframes pop-up {
0% {
transform: translateX(0);
100% {
transform: translateX(300px);
这个代码使用了一个浮动容器来包含三个桃子形状。每个桃子形状使用一个绝对定位,并在其中心添加一个颜色。容器使用 rgba颜色填充,并在桃子周围设置一个border-radiusradius。桃子形状的宽度和高度为100像素,并在其中心添加一个背景颜色。当鼠标悬停在桃子上时,使用动画效果使桃子来回摇晃。
这个教程展示了如何使用CSS3中的动画效果来创建出一个逼真的桃子形状,并在页面上来回摇晃。通过使用不同的CSS属性和动画效果,大家可以创建出各种形状的桃子,例如圆形、椭圆形、桃核形等等。