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. 付费素材资源,需充值后方能下载,如有任何疑问可直接联系苦力吧客服
相关资源 / 导航菜单

jquery响应式单页滚动网站导航特效代码

一款单页滚屏导航菜单插件,点击导航菜单可弹性的滚动到对应内容位置,常用于单页网站中。
  导航菜单
 6659  0

纯CSS实现的水平二级导航菜单

一款橙色风格导航菜单,代码简单可快速修改,适用于PC电脑端。
  导航菜单
 7795  0

一款绿色风格整形公司下拉导航菜单特效

下拉显示的二级导航菜单,展开到底时有一个弹回的动画效果!
  导航菜单
 41037  0

jquery黑色英文导航条鼠标滑过中英文字导航条滑动切换显示

一款酷炫黑暗分明的导航菜单,鼠标hover经过显示隐藏文字,效果很赞!
  导航菜单
 4759  0

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

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