上海羽通仪器 上海羽通仪器是一家专业生产石油产品蒸馏仪、测硫仪、油品燃点闪点测试仪等设备的企业。他们的产品广泛应用于石油化工、环保监测、科研院所等领域,为客户提供高质量的检测设备和专业的技术支持。

页面功能

  • 通过JavaScript实现了页面滚动效果,增加了用户体验。
  • 当点击.menu_open元素时,导航栏会以动画形式向左滑动,遮盖层也会向右滑动。
  • 当点击.hcover元素时,遮盖层会以动画形式向左滑动,导航栏也会以动画形式向左滑动,同时导航栏的菜单项会收起。
  • 当点击.nav_item i元素时,会触发相应的事件处理函数。
$(document).ready( function() {
$('.subMenu').smint({ 'scrollSpeed' : 1000 });
});

$(function () {
$(".menu_open").click(function () {
$(".nav").animate({ 'left': '0' }, 400);
$(".hcover").animate({ 'right': '0' }, 400);
});
$(".hcover").click(function () {
$(this).animate({ 'right': '-50%' }, 400);
$(".nav").animate({ 'left': '-50%' }, 400);
$(".nav_ul").animate({ 'left': '0' }, 400);
$('.nav_item_open').css('left', '-50%');
});
$(".nav_item i").click(function () {
// 在这里添加事件处理函数
});
});