選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index1.js 421 B

1234567891011121314151617181920
  1. $(window).load(function(){
  2. var inSec3Swiper = new Swiper('.inSec3Swiper',{
  3. spaceBetween: 0,
  4. paginationClickable: true,
  5. autoplayDisableOnInteraction:false,
  6. speed:1000,
  7. slidesPerView:1.5,
  8. slidesPerGroup:1
  9. })
  10. $('.inSec3Swiper').on('click','.inSec3ListTxt',function(){
  11. $(this).parents('.inSec3Swiper').find('.inSec3ListTxt').removeClass('active');
  12. $(this).addClass('active')
  13. })
  14. })