css3制作闪烁的太阳
2019年09月06日
786
css3制作闪烁的太阳

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
body {
background-color: skyblue;
}
.sun{
width: 300px;
height: 300px;
border-radius: 50%;
background: #F6D66E;
margin: 50px 20px;
animation: mymove 2s ease infinite;
-moz-animation: mymove 2s ease infinite;
-webkit-animation: mymove 2s ease infinite;
-o-animation: mymove 2s ease infinite;
-ms-animation: mymove 2s ease infinite;
}
@keyframes mymove{
0% {
box-shadow: 0 0 100px rgba(204, 102, 0, 0.8);
}
50% {
box-shadow: 0 0 100px rgba(204, 102, 0, 0.3);
}
100% {
box-shadow: 0 0 100px rgba(204, 102, 0, 0.8);
}
}
</style>
</head>
<body>
<div class="sun"></div>
</body>
</html>
