星火官网,前端页面(前台)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

about.js 703B

123456789101112131415161718192021
  1. $(".main-timeline .timeline").click(function () {
  2. var TAG = $(this).siblings().length;
  3. if (TAG >= 1) {
  4. var index = $(this).index()
  5. $(this).addClass('fd-active-line').siblings().removeClass('fd-active-line')
  6. $(this).parent().parent().siblings('.event_list').children().eq(index).show().siblings().hide()
  7. }
  8. })
  9. var swiper = new Swiper('.swiper-container', {
  10. slidesPerView: 4,
  11. direction: 'vertical',
  12. navigation: {
  13. nextEl: '.swiper-button-next',
  14. prevEl: '.swiper-button-prev',
  15. },
  16. on: {
  17. resize: function () {
  18. swiper.changeDirection(getDirection());
  19. }
  20. }
  21. });