$(function() { newsclamp() bannerpicswiper() }) //新闻板块-多行省略 function newsclamp() { var mynews = $('.main-news-clamp') $.each(mynews, function(i, item) { $clamp(item, { clamp: 2, usenativeclamp: false }) }) } //banner图片轮播 function bannerpicswiper() { var myswiper = new swiper ('.swiper-container', { direction: 'horizontal', loop: true, speed: 3000, autoplay: 3000, // 前进后退按钮 nextbutton: '.swiper-button-next', prevbutton: '.swiper-button-prev', }) $('.swiper-container').css('z-index', '0') $('.swiper-container').hover( function() { $('.swiper-button-prev').css('opacity', '1') $('.swiper-button-next').css('opacity', '1') }, function() { $('.swiper-button-prev').css('opacity', '0.1') $('.swiper-button-next').css('opacity', '0.1') } ) }