gsap+css实现导航条菜单点击动画效果代码

代码语言:html

所属分类:菜单导航

代码描述:gsap+css实现导航条菜单点击动画效果代码

代码标签: gsap css 导航条 菜单 点击 动画

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

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <link type="text/css" rel="stylesheet" href="//repo.bfw.wiki/bfwrepo/css/all.6.0.css">

    <style>
        @import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&subset=cyrillic");
        
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            width: 100%;
            transition: 0.5s;
            overflow: hidden;
        }
        
        .overlay {
            height: 200vw;
            width: 200vw;
            border-radius: 50%;
            background-color: #000;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .nav {
            background-color: #fff;
            padding: 12px 5px;
            border-radius: 15px;
            box-shadow: 3px 3px 15px rgba(179, 179, 179, 0.185);
            position: relative;
            z-index: 99;
        }
        
        .tabs {
            display: flex;
            width: 490px;
            justify-content: space-around;
            list-style-type: none;
        }
        
        .tab {
            padding: 12px 22px;
            background-color: #e0efff;
            color: #58a6ff;
            margin-right: 15px;
            border-radius: 55px;
            text-align: center;
            white-space: nowrap;
            transition: 0.3s ease;
            overflow: hidden;
            max-width: 0px;
            cursor: pointer;
            position: relative;
            flex-basis: 120px;
        }
        
        .tab-is-active {
            max-width: 100px;
            box-shadow: 7px 7px 15px rgba(124, 124, 124, 0.096);
        }
        
        .tab-is-active .tab-name {
            opacity: 1;
        }
        
        .tab-circle {
            position: absolute;
            height: 20px;
            width: 20px;
            border-radius: 50%;
            border: 2px solid #95c5fd;
            z-index: 10;
            opacity: 0;
            left: 30px;
            pointer-events: none;
        }
        
        .tab-icon {
            margin-right: 1px;
            font-size: 18px;
            vertical-align: middle;
            position: relative;
            right: 6.7px;
            top: -1px;
        }
        
        .tab-name {
            font-family: "Ubuntu", sans-serif;
            font-size: 15px;
            font-weight: 500;
            position: relative;
            transition: 0.3s ease;
            top: 1px;
            opacity: 0;
        }
        
        .tab-bookmark {
            background: #cffcff;
            color: #009ffb;
        }
        
        .tab-burn {
            background: #f1ddff;
            color: #8f44fd;
        }
        
        
        .tab-clipboard {
            background: #ecd1dd;
            color: #d93479;
        }
        
        .tab-comment {
            background: #eee0ca;
            color: #d3be3a;
        }
    .........完整代码请登录后点击上方下载按钮下载查看

网友评论0