div+css实现光影线条穿梭动画效果代码

代码语言:html

所属分类:动画

代码描述:div+css实现光影线条穿梭动画效果代码

代码标签: div css 光影 线条 穿梭 动画

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

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

<head>
  <meta charset="UTF-8">
  

  
  
<style>
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");
* {
  box-sizing: border-box;
  margin: auto;
}

body {
  position: relative;
  height: 100vh;
  display: flex;
  background: #0f0f0f;
  overflow: hidden;
  perspective: 1440px;
}

.logo {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}
.logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 50px;
  background: #ffffff3f;
  border-radius: 50%;
  opacity: 0;
  filter: blur(50px) url(#noiseFilter);
  animatio.........完整代码请登录后点击上方下载按钮下载查看

网友评论0