循环播放
播放顺序
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 500px;
height: 400px;
/* 边距 */
margin: 40px auto;
background-color: #2b92d4;
border-radius: 5px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
animation:breathe 1s ease-in-out infinite alternate;
}
@keyframes breathe {
0% {
/* opacity 透明度 */
opacity: 0.2;
box-shadow: 0 1px 2px rgba(225,225,225,0.1);
}
50% {
opacity: 0.5;
box-shadow: 0 1px 2px rgba(18,190,84,0.76);
}
100% {
/* 完全不透明 */
opacity:1;
box-shadow: 0 1px 30px rgba(59,225,225,1);
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>
多多关照不迷路哟!!!
谢谢