SVG图标动画选项卡导航菜单特效代码

所属分类: 网页特效-导航菜单    2023-12-15 11:58:36

SVG图标动画选项卡导航菜单特效代码 ie兼容6
 查看演示  登录后下载 温馨提示
登录会员即可享受免费下载
 我要建站

SVG图标动画选项卡导航菜单特效代码(共3个文件)

    • index.html

使用方法

"use strict"; 

const body = document.querySelector(".cd__main"); //document.body;
const bgColorsBody = ["#ffb457", "#ff96bd", "#9999fb", "#ffe797", "#cffff1"];
const menu = body.querySelector(".menu");
const menuItems = menu.querySelectorAll(".menu__item");
const menuBorder = menu.querySelector(".menu__border");
let activeItem = menu.querySelector(".active");

function clickItem(item, index) {

    menu.style.removeProperty("--timeOut");
    
    if (activeItem == item) return;
    
    if (activeItem) {
        activeItem.classList.remove("active");
    }

    
    item.classList.add("active");
    body.style.backgroundColor = bgColorsBody[index];
    activeItem = item;
    offsetMenuBorder(activeItem, menuBorder);
    
    
}

function offsetMenuBorder(element, menuBorder) {

    const offsetActiveItem = element.getBoundingClientRect();
    const left = Math.floor(offsetActiveItem.left - menu.offsetLeft - (menuBorder.offsetWidth  - offsetActiveItem.width) / 2) +  "px";
    menuBorder.style.transform = `translate3d(${left}, 0 , 0)`;

}

offsetMenuBorder(activeItem, menuBorder);

menuItems.forEach((item, index) => {

    item.addEventListener("click", () => clickItem(item, index));
    
})

window.addEventListener("resize", () => {
    offsetMenuBorder(activeItem, menuBorder);
    menu.style.setProperty("--timeOut", "none");
});

站长提示:
1. 苦力吧素材官方QQ群:950875342
2. 平台上所有素材资源,需注册登录会员方能正常下载。
3. 会员用户积极反馈网站、素材资源BUG或错误问题,每次奖励2K币
4. PHP源码类素材,如需协助安装调试,或你有二次开发需求,可联系苦力吧客服。
5. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 导航菜单

一款精仿mac苹果风格经典动态导航菜单

一共有三种展示效果:水平导航、垂直导航、鼠标单击展开,集成了多个脚本文件。
  导航菜单
 8763  0

纯CSS写的商城网站商品分类导航菜单代码

一款绿色风格的茶叶商城二级分类导航菜单,全部是css设计实现,很漂亮!
  导航菜单
 9724  0

jquery响应式鼠标悬停显示下拉悬浮导航菜单特效

一款响应式多风格导航菜单,包含多种不同的主题风格,兼容电脑端和手机端,很实用。
  导航菜单
 41071  0

纯css实现的鼠标悬停动画展开平滑的导航菜单代码

一款设计美观的垂直导航下拉菜单,鼠标悬停于菜单上触发显示下拉导航菜单,鼠标移走即消失。还附带了点击搜索框页面变暗,搜索框高亮显示特效。
  导航菜单
 51022  0

评论数(0) 回复有机会获得K币 用户协议

^_^ 还没有人评论,快来抢个沙发!
😀
  • 😀
  • 😊
  • 😂
  • 😍
  • 😑
  • 😷
  • 😵
  • 😛
  • 😣
  • 😱
  • 😋
  • 😎
  • 😵
  • 😕
  • 😶
  • 😚
  • 😜
  • 😭
发表评论