var myApp = new Framework7({ modalTitle: '温馨提示', animateNavBackIcon: true, hideNavbarOnPageScroll: false, hideToolbarOnPageScroll: false, // Hide and show indicator during ajax requests onAjaxStart: function (xhr) { myApp.showIndicator(); }, onAjaxComplete: function (xhr) { myApp.hideIndicator(); }, pushState: true, ajaxLinks: 'a.ajax' }); // Expose Internal DOM library var $$ = Dom7; // Add main view var mainView = myApp.addView('.view-main', { // Enable Dynamic Navbar for this view dynamicNavbar: true }); /* ===== 幻灯片 ===== */ var mySwiper = myApp.swiper('.swiper-1', { pagination: '.swiper-1 .swiper-pagination', nextButton: '.swiper-1 .swiper-button-next', prevButton: '.swiper-1 .swiper-button-prev', paginationClickable: true, spaceBetween: 0, centeredSlides: true, autoplay: 2500, autoplayDisableOnInteraction: false, loop: true, grabCursor: true }); var mySwiperVertical = myApp.swiper('.swiper-vertical', { direction: 'vertical', autoplay: 3500, loop: true, }); var mySwiper2 = myApp.swiper('.swiper-2', { autoplay: 2500, autoplayDisableOnInteraction: false, loop: true, grabCursor: true });