css路径滚动动画
代码语言:html
所属分类:动画
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
margin: 0;
height: 100vh;
display: grid;
place-items: center;
background: #212121;
}
.container {
display: grid;
place-items: center;
position: relative;
}
canvas {
position: absolute;
z-index: -1;
}
.moon-1 {
background: #eee;
border-radius: 100%;
width: 30px;
height: 30px;
offset-path: path('M0,144 C79.529004,144 144,79.529004 144,0 C144,-79.529004 79.529004,-144 0,-144 C-79.529004,-144 -144,-79.529004 -144,0 C-144,79.529004 -79.529004,144 0,144 Z');
position: absolute;
top: 145px;
animation: rotate 20s linear infinite;
left: 145px
}
.moon-2 {
background: #eee;
border-radi.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0