实现效果
实现代码
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>myLove</title>
<style>
*{
margin: 0;
padding: 0;
list-style: none;
}
#love{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #232E6D;
}
ul{
height: 200px;
}
li{
float: left;
width: 20px;
height: 20px;
border-radius: 20px;
margin-right: 20px;
}
li:nth-child(1){
animation: love1 4s infinite;
background-color: #F62E74;
animation-delay: 0s;
}
li:nth-child(2){