酒吧聚光灯效果

代码语言:html

所属分类:动画

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

<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Night Party Mode</title>
  <style>
      html, body{
  height: 100%;
  background: white;
  color: black;
  overflow: hidden;
  padding: 0px;
  margin: 0px;
  font-family: sans-serif;
}

#container{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.beam{
  width: 8px;
  height: 2000px;
  position: absolute;
  background: red;
  box-shadow: 0px 0px 40px 10px red;
  display: none;
}

p{
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6em;
}

.bottom-light{
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 100%;
  position: fixed;
  background-color: #fff;
  box-shadow:
    0px 0px 10px 10px white,
    0px 0px 30px 30px red,
    0px 100px 100px 100px rgba(255, 0, 0, .3);
}

#switch{
  color: white;
  background: black;
  font-size: 32px;
  font-weight: bold;
  padding: 8px 15px 8px 15px;
  border: none;
  bord.........完整代码请登录后点击上方下载按钮下载查看

网友评论0