word.js 445 Bytes
var $ = Dom7;
var app = new Framework7({
  root: '#app',
  theme: 'ios',
  routes: routes
});


var swiper = new Swiper('.swiper-container', {
  loop: true,
  pagination: {
    el: '.swiper-pagination',
    clickable: true,
  },
});


$(".js-word-tab li").click(function () {
  $(this).addClass("active").siblings().removeClass("active");
  $(".js-tab-con .tab-panel").eq($(this).index()).addClass("active").siblings().removeClass("active");
});