弹出玻璃模糊菜单动画效果

代码语言:html

所属分类:菜单导航

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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">

    <title> Frosted Glass Menu | [best in chrome]</title>
 
    <link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Montserrat&amp;display=swap'>
    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            position: relative;
            width: 100%;
            height: 100vh;
            font-family: "Montserrat";
            background-image: url("http://repo.bfw.wiki/bfwrepo/image/5d6539613d08b.png");
            background-size: cover;
            overflow: hidden;
            z-index: 1;
        }
        body::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.35);
        }

        h1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgba(255, 255, 255, 0.8);
            font-size: 3rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            z-index: 3;
        }

        nav {
            --transition-time: 500ms;
            position: relative;
            width: 400px;
            height: 100%;
            display: flex;
            align-items: center;
            background: rgba(0, 0, 0, 0.45);
            backdrop-filter: blur(20px);
            transform: translateX(-100%);
            transition: all 800ms cubic-bezier(0.8, 0, 0.33, 1);
            z-index: 4;
        }
        nav a {
            text-transform: uppercase;
            font-size: 1.4rem;
            font-weight: 900;
            letter-spacing: 3px;
            text-decoration: none;
            user-select: none;
            color: #fff;
        }
        nav .nav-links {
            --link-height: 60px;
            position: relative;
            width: 100%;
        }
        nav .nav-links li {
            display: flex;
            justify-content: center;
            al.........完整代码请登录后点击上方下载按钮下载查看

网友评论0