<html><head></head><body>{"version":3,"file":"slidingCardContainer-CnYglysX.js","sources":["../../src/scripts/modules/slidingCardContainer.ts"],"sourcesContent":["import { Component } from '@verndale/core';\r\nimport Swiper from 'swiper';\r\nimport { Navigation, Keyboard, Pagination, Controller } from 'swiper/modules';\r\nimport { isSmallDesktop } from '../helpers';\r\nimport { eventBus } from '../helpers/resize';\r\nimport 'swiper/css/bundle';\r\n\r\nclass slidingCardContainer extends Component {\r\n  public slidingCardContainer: { destroy?: () =&gt; void | undefined };\r\n\r\n  constructor(el: HTMLElement) {\r\n    super(el);\r\n    this.slidingCardContainer = {};\r\n  }\r\n\r\n  setupDefaults() {\r\n    this.dom = {\r\n      el: this.el,\r\n      swiperContainer: this.el.querySelector<htmlelement>('.swiper'),\r\n      swiperWrapper: this.el.querySelector<htmlelement>('.swiper-wrapper'),\r\n      swiperItems: this.el.querySelectorAll<htmlelement>('.swiper-slide'),\r\n      pagination: this.el.querySelector<htmlelement>('.sliding-card__slider-pagination'),\r\n      prevButton: this.el.querySelector<htmlelement>('.btn-previous-slide'),\r\n      nextButton: this.el.querySelector<htmlelement>('.btn-next-slide')\r\n    };\r\n\r\n    if (!isSmallDesktop()) {\r\n      this.initSwiper();\r\n    } else {\r\n      (this.dom.swiperItems as NodeList).forEach(item =&gt; {\r\n        (item as HTMLElement).classList.remove('swiper-slide');\r\n      });\r\n    }\r\n  }\r\n\r\n  addListeners() {\r\n    eventBus.subscribe('breakpointChange', (breakpoint: string) =&gt; {\r\n      this.manageSwiper(breakpoint);\r\n    });\r\n  }\r\n\r\n  manageSwiper(breakpoint: string) {\r\n    if (\r\n      breakpoint === 'tablet' ||\r\n      breakpoint === 'mobile' ||\r\n      breakpoint === 'tabletLandscape' ||\r\n      breakpoint === 'smallDesktop'\r\n    ) {\r\n      (this.dom.swiperItems as NodeList).forEach(item =&gt; {\r\n        (item as HTMLElement).classList.add('swiper-slide');\r\n      });\r\n      this.initSwiper();\r\n    } else {\r\n      if (this.slidingCardContainer) {\r\n        if (this.slidingCardContainer.destroy) {\r\n          this.slidingCardContainer.destroy();\r\n        }\r\n      }\r\n      (this.dom.swiperItems as NodeList).forEach(item =&gt; {\r\n        (item as HTMLElement).classList.remove('swiper-slide');\r\n      });\r\n    }\r\n  }\r\n\r\n  initSwiper() {\r\n    Swiper.use([Navigation, Keyboard, Pagination, Controller]);\r\n\r\n    this.slidingCardContainer = new Swiper(this.dom.swiperContainer as HTMLElement, {\r\n      pagination: {\r\n        el: this.dom.pagination as HTMLElement,\r\n        type: 'progressbar'\r\n      },\r\n      navigation: {\r\n        nextEl: this.dom.nextButton as HTMLElement,\r\n        prevEl: this.dom.prevButton as HTMLElement\r\n      },\r\n      slidesPerView: 1.22,\r\n      autoHeight: false,\r\n      loop: true\r\n    });\r\n  }\r\n}\r\n\r\nexport default slidingCardContainer;\r\n"],"names":["slidingCardContainer","Component","el","__publicField","isSmallDesktop","item","eventBus","breakpoint","Swiper","Navigation","Keyboard","Pagination","Controller"],"mappings":"sbAOA,MAAMA,UAA6BC,CAAU,CAG3C,YAAYC,EAAiB,CAC3B,MAAMA,CAAE,EAHHC,EAAA,6BAIL,KAAK,qBAAuB,CAAC,CAAA,CAG/B,eAAgB,CACd,KAAK,IAAM,CACT,GAAI,KAAK,GACT,gBAAiB,KAAK,GAAG,cAA2B,SAAS,EAC7D,cAAe,KAAK,GAAG,cAA2B,iBAAiB,EACnE,YAAa,KAAK,GAAG,iBAA8B,eAAe,EAClE,WAAY,KAAK,GAAG,cAA2B,kCAAkC,EACjF,WAAY,KAAK,GAAG,cAA2B,qBAAqB,EACpE,WAAY,KAAK,GAAG,cAA2B,iBAAiB,CAClE,EAEKC,IAGF,KAAK,IAAI,YAAyB,QAAgBC,GAAA,CAChDA,EAAqB,UAAU,OAAO,cAAc,CAAA,CACtD,EAJD,KAAK,WAAW,CAKlB,CAGF,cAAe,CACJC,EAAA,UAAU,mBAAqBC,GAAuB,CAC7D,KAAK,aAAaA,CAAU,CAAA,CAC7B,CAAA,CAGH,aAAaA,EAAoB,CAE7BA,IAAe,UACfA,IAAe,UACfA,IAAe,mBACfA,IAAe,gBAEd,KAAK,IAAI,YAAyB,QAAgBF,GAAA,CAChDA,EAAqB,UAAU,IAAI,cAAc,CAAA,CACnD,EACD,KAAK,WAAW,IAEZ,KAAK,sBACH,KAAK,qBAAqB,SAC5B,KAAK,qBAAqB,QAAQ,EAGrC,KAAK,IAAI,YAAyB,QAAgBA,GAAA,CAChDA,EAAqB,UAAU,OAAO,cAAc,CAAA,CACtD,EACH,CAGF,YAAa,CACXG,EAAO,IAAI,CAACC,EAAYC,EAAUC,EAAYC,CAAU,CAAC,EAEzD,KAAK,qBAAuB,IAAIJ,EAAO,KAAK,IAAI,gBAAgC,CAC9E,WAAY,CACV,GAAI,KAAK,IAAI,WACb,KAAM,aACR,EACA,WAAY,CACV,OAAQ,KAAK,IAAI,WACjB,OAAQ,KAAK,IAAI,UACnB,EACA,cAAe,KACf,WAAY,GACZ,KAAM,EAAA,CACP,CAAA,CAEL"}</htmlelement></htmlelement></htmlelement></htmlelement></htmlelement></htmlelement><style>
.hidden {
display: none;
}
</style>

<a href="http://www.xinglongmaofang.com"  class="hidden">Gaming-platform-contactus@xinglongmaofang.com</a>
<a href="http://www.smxjjl.com"  class="hidden">体育平台</a>
<a href="http://www.sydotnet.net"  class="hidden">足球外围平台</a>
<a href="http://www.zaibj.net"  class="hidden">Crown-camp-careers@zaibj.net</a>
<a href="http://web-sitemap.zxz828.net" class="hidden">郧阳网</a>
<a href="http://nljdtp.hotelcaliceo.com" class="hidden">河北金融学院</a>
<a href="http://jegkfq.gekakikai.com" class="hidden">中国地质大学(武汉)研究生院</a>
<a href="http://www.51jiyangshi.com"  class="hidden">Football-platform-info@51jiyangshi.com</a>
<a href="http://omjrdx.bj7dian.com" class="hidden">中山国际网 </a>
<a href="http://www.xingtaiyichuang.com"  class="hidden">足球买球</a>
<a href="http://dqfbtk.doublerabbits.com" class="hidden">西宁赶集网</a>
<a href="http://zluocr.drordi.com" class="hidden">长兴人才网</a>
<a href="http://www.lyhymh.net"  class="hidden">体育博彩平台</a>
<a href="http://www.eduftp.net"  class="hidden">太阳城集团</a>
<a href="http://aiqpbv.southmandoor.com" class="hidden">黄冈百姓网</a>
<a href="http://www.wellnessgrass.net"  class="hidden">太阳城</a>
<a href="http://www.muurausahvenlampi.com"  class="hidden">皇冠体育官网</a>
<a href="http://www.akingdum.net"  class="hidden">银河集团app下载</a>
<a href="http://bztpuj.vf888888.com" class="hidden">精铟海工</a>
<a href="http://jfdpuf.ozone-1.com" class="hidden">连云港房产网</a>

<a href="https://es-la.facebook.com/public/十博注册app>>✔️官方网址:la777.net✔️手输<<十博注册app>>✔️官方网址:la777.net✔️手输<<.jmq" class="hidden">联络互动</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=推荐十大赌博靠谱网络平台平台介绍✔️网址:la66.net✔️推荐十大赌博靠谱网络平台平台介绍✔️网址:la66.net✔️.rya" class="hidden">中工网军事频道</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=beat365中文官方网站平台介绍✔️最新网址:ad22.net✔️.wbn" class="hidden">山西信息港</a>
<a href="https://stock.adobe.com/search?k=✔️最新网址:la55.net✔️千亿体育娱乐app✔️最新网址:la55.net✔️千亿体育娱乐app" class="hidden">西玛屋</a>
<a href="https://acrmc.com/search/✔️网址:ad11.net✔️科普一下亚博全站网站线上下载的百科✔️网址:ad11.net✔️科普一下亚博全站网站线上下载的百科" class="hidden">北斗星小说网</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=科普一下188bet亚洲真人体育下载的百科✔️网址:la66.net✔️.nee" class="hidden">55小说网</a>
<a href="https://stock.adobe.com/search/images?k=✔️最新网址:ad22.net✔️全球最大彩票公司(中国)有限公司" class="hidden">红色论坛 </a>
<a href="https://m.facebook.com/public/>>✔️网址:la666.net✔️手输<<全球网堵十大网站" class="hidden">达海智能</a>
<a href="https://stock.adobe.com/search?k=✔️网址:la66.net✔️靠谱的体育网站-靠谱的体育网站官方网站" class="hidden">台州赶集网</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️最新网址:la55.net✔️科普一下bwin电子游戏的百科.myc" class="hidden">连云港住房公积金互联网查系统</a>

<a href="/news/hyncxk-928820" class="hidden">MM131美女图片</a>
<a href="/sttcs/hot-news/vagabondism.html" class="hidden">江门赶集网</a>
<a href="/sttcs/hot-news/Whiglet.html" class="hidden">吉网</a>
<a href="/news/bqfutz-748215.html" class="hidden">Visa中国官网</a>
<a href="/cn/vyeamm-540140" class="hidden">常德赶集网</a>


</body></html>