//导航 jQuery(".navlist").slide({ type:"menu",// 效果类型,针对菜单/导航而引入的参数(默认slide) titCell:".nLi", //鼠标触发对象 targetCell:".sub", //titCell里面包含的要显示/消失的对象 effect:"slideDown", //targetCell下拉效果 delayTime:300 , //效果时间 triggerTime:0, //鼠标延迟触发时间(默认150) returnDefault:true //鼠标移走后返回默认状态,例如默认频道是“预告片”,鼠标移走后会返回“预告片”(默认false) }); //banner var mySwiper = new Swiper('.banner', { speed:1200, loop:true, centeredSlides: true, autoplay: { delay: 2500, disableOnInteraction: false, }, navigation: { nextEl: '.swiper-button-next', prevEl: '.swiper-button-prev', }, }); //鼠标覆盖停止自动切换 mySwiper.el.onmouseover = function(){ mySwiper.autoplay.stop(); } //鼠标离开开始自动切换 mySwiper.el.onmouseout = function(){ mySwiper.autoplay.start(); } //学院新闻滚动图 var swiper = new Swiper('.news-left', { speed:1200, loop:true, effect:"fade", fadeEffect: {crossFade: true}, autoplay: { delay: 3000, disableOnInteraction: false, }, pagination: { el: '.swiper-pagination', type: 'fraction', }, }); //aos AOS.init({ duration:"1400", });