css实现黄金波浪云背景效果代码

代码语言:html

所属分类:背景

代码描述:css实现黄金波浪云背景效果代码

代码标签: css 黄金 波浪 背景

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
  
  
  
<style>
html, body {
  padding: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
}

svg {
  width: 100%;
  height: 100%;
}
</style>

  
  



</head>

<body  >
  <svg>
  <defs>
    <pattern id="golden-wave" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse">
      <rect x="0" y="0" width="100" height="100" fill="#000"/>
      <g id="wave-circle">
        <circle cx="50" cy="50" r="30" stroke="#FFD700" stroke-width="2" />
        <circle cx="50" cy="50" r="25" stroke="#FFD700" stroke-width="2" />
        <circle cx="50" cy="50" r="20".........完整代码请登录后点击上方下载按钮下载查看

网友评论0