<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Milena Carecho">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Pulsar</title>
</head>
<body>
<div class="center">
<div class="pulse">Pulse</div>
</div>
</body>
</html>
HTML
格式化
支持Emmet,输入 p 后按 Tab键试试吧!
<head> ... </head>
<body>
</body>
CSS
格式化
body
{
margin: 0;
padding: 0;
background: #262626;
}
.center
{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.pulse
{
width: 100px;
height: 100px;
background: #177c80;
border-radius: 50%;
color: #fff;
font-size: 20px;
text-align: center;
line-height: 100px;
font-family: verdana;
text-transform: uppercase;
animation: animate 3s linear infinite;
text-align: center;
}
@keyframes animate
{
0%
{
box-shadow: 0 0 0 0 rgba(55, 209, 201, 0.7), 0 0 0 0 rgba(24, 153, 104, 0.7);
}
40%
{
box-shadow: 0 0 0 50px rgba(55, 209, 201, 0), 0 0 0 0 rgba(55, 209, 201, 0.7);
}
80%
{
box-shadow: 0 0 0 50px rgba(55, 209, 201, 0), 0 0 0 30px rgba(55, 209, 201, 0);
}
100%
{
box-shadow: 0 0 0 0 rgba(55, 209, 201, 0), 0 0 0 30px rgba(55, 209, 201, 0);
}
}
JS
格式化