html+cssで水球効果を出す
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<style>
*{
margin: 0;
padding: 0;
}
body{
height: 100vh;
background: linear-gradient(rgb(95,95,250)
,10%,rgb(3,3,110));
}
.main,.wave{
width: 200px;
height: 200px;
border-radius: 50%;
position: absolute;
left:50%;
top:50%;
transform: translate(-50%,-50%);
}
.main{
border: 3px solid darkturquoise;
padding: 10px;
}
.wave{
background: darkturquoise;
overflow: hidden;
}
.wave::after{
content: "";
width: 300px;
height: 300px;
background: rgba(255, 255, 255, 0.8);
position: absolute;
left: 50%;
top:0;
transform: translate(-50%,-60%);
border-radius: 40%;
animation: wave 5s linear infinite;
}
.wave::before{
content: "waterball";
position: absolute;
left:50%;
top: 0px;
color:darkturquoise;
z-index:99;
transform: translate(-50%,30px);
text-transform: uppercase;
}
@keyframes wave {
100%{
transform: translate(-50%,-60%) rotate(360deg);
}
}
</style>
</head>
<body>
<div class="main">
<div class="wave"></div>
</div>
</body>
</html>
コードはB局upコードの小さいかすから来ます