function bindevent() { $('.system .show-head .item').click(function () { var id = $(this).attr('data-id'); $(this).addclass('active').siblings().removeclass('active'); $('#' + id).addclass('active').siblings().removeclass('active'); }); $("#slidebox").slide({maincell:".bd ul",autoplay:true}); } function switchnext(origin) { var show = origin.next(); if (show.length) { origin.hide().removeclass('active'); show.fadein().addclass('active'); return true; } else { origin.hide().removeclass('active'); origin.siblings(':first-child').fadein().addclass('active'); } } function switchprev(origin) { var show = origin.prev(); if (show.length) { origin.hide().removeclass('active'); show.fadein().addclass('active'); return true; } else { origin.hide().removeclass('active'); origin.siblings(':last-child').fadein().addclass('active'); } } // aptitude 资质 function aptitudeanimatefunc() { $('.aptitude .mien-next').click(function() { switchnext($('.aptitude-swipe .active')); }); $('.aptitude .mien-prev').click(function() { switchprev($('.aptitude-swipe .active')); }); } $(function () { bindevent(); //new zoompic("box-swiper"); // if (findbrowserie()) { // mienanimatefuncie(); // } // else { // mienanimatefunc(); // } aptitudeanimatefunc(); })