svg+css实现星空立方体旋转动画效果代码
代码语言:html
所属分类:动画
代码描述:svg+css实现星空立方体旋转动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body,html{
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
body{
background-color: #141417;
display: flex;
justify-content: center;
align-items: center;
}
svg{
height: 100%;
width: 100%;
}
</style>
</head>
<body>
<svg width="512" height="512" viewBox="0 0 512 512" fill="none" overflow="hidden" xmlns="http://www.w3.org/2000/svg">
<use href="#cube" x="128" y="320" stroke-width="2" opacity="0.3">
<animate attributeName="stroke" dur="6s" repeatCount="indefinite"
values="#FF9AA2;#FFB7B2;#FFDAC1;#E2F0CB;#B5EAD7;#C7CEEA;#FF9AA2"/>
</use>
<rect width="512" height="512" y="384" fill="url(#fade)"/>
<use href="#cube" x="128" y="128" stroke-width="2">
<animate attributeName="stroke" dur="6s" repeatCount="indefinite"
values="#FF9AA2;#FFB7B2;#FFDAC1;#E2F0CB;#B5EAD7;#C7CEEA;#FF9AA2"/>
</use>
<defs>
<!-- EVERYTHING TOGETHER -->
<g id="cube">
<use href="#cube_outline" stroke-linejoin="round" stroke-width="16" fill="url(#stars)"/>
<use href=&.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0