111111
1
2//
// Modern Soft-Neo UI JavaScript
// 交互逻辑和动态效果
document.addEventListener('DOMContentLoaded', function() {
// 导航项点击效果
const navItems = document.querySelectorAll('.nav-item');
navItems.forEach(item => {
item.addEventListener('click', function(e) {
e.preventDefault();
navItems.forEach(nav => nav.classList.remove('active'));
this.classList.add('active');
});
});
// 控制台欢迎信息
console.log('%cModern Soft-Neo UI', 'font-size: 20px; font-weight: bold; color: #8C7CF0;');
console.log('%c欢迎使用!界面已加载完成。', 'color: #6B6B6B;');
});
许可协议:
CC BY 4.0