div+css布局实现摄像头镜头效果代码

代码语言:html

所属分类:布局界面

代码描述:div+css布局实现摄像头镜头效果代码

代码标签: div css 布局 摄像头 镜头

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

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

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

  
  
<style>
body {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: rgb(240, 200, 200);
  position: relative;
}

.concentric-circle {
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.outer-housing {
  width: 20rem;
  height: 20rem;
  background: linear-gradient(0deg, rgb(80, 80, 80), rgb(0, 0,.........完整代码请登录后点击上方下载按钮下载查看

网友评论0