css+js实现带视觉差异效果404页面代码

代码语言:html

所属分类:视觉差异

代码描述:css+js实现带视觉差异效果404页面代码,鼠标移动试试。

代码标签: css js 视觉 差异 404 页面

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

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

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

    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/reset.min.css">
    <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Roboto:400,300,700,900'>
    <style>
        /*--------------------
    Body
    --------------------*/
    html,
    body {
      height: 100%;
      background: linear-gradient(0, #202239, #8595AC);
    }
    
    ::selection {
      background: #CDD4DE;
    }
    
    /*--------------------
    Page
    --------------------*/
    .page {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      z-index: 1;
      font-family: Roboto, sans-serif;
      background: #0D0C1E;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    /*--------------------
    Header
    --------------------*/
    header {
      padding: 30px;
    }
    header .logo {
      margin: 0 auto;
      text-align: center;
      margin-bottom: -17px;
    }
    header .logo svg {
      width: 61px;
      height: 14px;
    }
    header nav {
      cursor: pointer;
      width: 18px;
      height: 18px;
      position: relative;
      float: left;
    }
    header nav::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: #565c73;
      border-radius: 2px;
      box-shadow: 0 5px 0 #565c73, 0 10px 0 #565c73;
    }
    header .search {
      float: right;
      cursor: pointer;
    }
    header .search svg {
      width: 16px;
      height: 16px;
    }
    
    /*--------------------
    Content
    --------------------*/
    .content {
      text-align: center;
      padding-top: 118px;
      color: #CDD4DE;
    }
    .content h1 {
      font-weight: 900;
      font-size: 165px;
      line-height: 1;
      margin-bottom: -10px;
      opacity: 0.6;
    }
    .content h2 {
      font-weight: 700;
      font-size: 34px;
      margin-bottom: 6px;
      opacity: 0.9;
    }
    .content p {
      font-weight: 300;
      font-size: 14px;
      opacity: 0.7;
      margin-bottom: 14.........完整代码请登录后点击上方下载按钮下载查看

网友评论0