|
-
-
- $(window).load(function () {
- resizes()
- setTimeout(function () {
- resizes()
- }, 0)
-
- var inSec3Swiper = new Swiper('.inSec3Swiper', {
- spaceBetween: 0,
- paginationClickable: true,
- autoplayDisableOnInteraction: false,
- speed: 1000,
- slidesPerView: 1.5,
- slidesPerGroup: 1
- })
-
- $('.inSec3Swiper').on('click', '.inSec3ListTxt', function () {
- $(this).parents('.inSec3Swiper').find('.inSec3ListTxt').removeClass('active');
- $(this).addClass('active')
- })
- }).resize(function () {
- resizes()
- })
-
- function resizes() {
- var inSec1H = $('.index_sec1').outerHeight();
- var h = inSec1H - $('.inSec2Col9').height() - 22 - $('.index_sec2 .inSec1T').outerHeight();
- $('.inSec2Row').eq(1).find('.inSec2List').height(h)
- }
|