<html><head></head><body>{"version":3,"sources":["webpack:///./src/feature/page/page.js"],"names":["classes","activeBackground","Page","element","initDomCache","el","$el","backgroundContainer","dom","backgrounds","addSubscriptions","subscribe","current","setBackground","nextBackground","addBackgrounds","length","i","document","createElement","setAttribute","appendChild","find","classList","contains","remove","add","BaseFeature"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;;;;AACA;;;;;;;;;;;;AAEA,IAAMA,UAAU;AACfC,mBAAkB;AADH,CAAhB;;IAIqBC,I;;;AACpB,eAAYC,OAAZ,EAAqB;AAAA;;AAAA,0GACdA,OADc;;AAEpB,QAAKC,YAAL;AACA,QAAKC,EAAL,GAAUF,OAAV;AACA,QAAKG,GAAL,GAAW,sBAAE,MAAKD,EAAP,CAAX;AACA,QAAKE,mBAAL,GAA2B,MAAKC,GAAL,CAASD,mBAApC;;AAEA,QAAKE,WAAL,GAAmB,IAAnB;;AAEA,QAAKC,gBAAL;AAToB;AAUpB;;;;qCAEkB;AAAA;;AAClB,QAAKC,SAAL,CAAe,qBAAf,EAAsC,YAAsB;AAAA,mFAAP,EAAO;AAAA,QAAnBC,OAAmB,QAAnBA,OAAmB;;AAC3D,WAAKC,aAAL,CAAmBD,OAAnB;AACA,IAFD;AAGA,QAAKD,SAAL,CAAe,sBAAf,EAAuC,YAAsB;AAAA,oFAAP,EAAO;AAAA,QAAnBC,OAAmB,SAAnBA,OAAmB;;AAC5D,WAAKE,cAAL,CAAoBF,OAApB;AACA,IAFD;AAGA,QAAKD,SAAL,CAAe,sBAAf,EAAuC,YAA0B;AAAA,oFAAP,EAAO;AAAA,QAAvBF,WAAuB,SAAvBA,WAAuB;;AAChE,WAAKM,cAAL,CAAoBN,WAApB;AACA,IAFD;AAGA;;;iCAEcA,W,EAAa;AAC3B,OAAIA,YAAYO,MAAhB,EAAwB;AACvB,SAAK,IAAIC,IAAI,CAAb,EAAgBA,IAAIR,YAAYO,MAAhC,EAAwCC,GAAxC,EAA6C;AAC5C,SAAMd,UAAUe,SAASC,aAAT,CAAuB,KAAvB,CAAhB;AACAhB,aAAQiB,YAAR,CAAqB,OAArB,EAA8B,oBAA9B;AACAjB,aAAQiB,YAAR,CAAqB,SAArB,EAAgC,iBAAhC;AACAjB,aAAQiB,YAAR,CAAqB,OAArB,EAA8BX,YAAYQ,CAAZ,CAA9B;AACA,UAAKV,mBAAL,CAAyBc,WAAzB,CAAqClB,OAArC;AACA;AACD,SAAKM,WAAL,GAAmB,KAAKH,GAAL,CAASgB,IAAT,CAAc,6BAAd,CAAnB;AACA;AACD;;;gCAEaV,O,EAAS;AACtB,OAAI,CAACA,OAAL,EAAc;AACb;AACA;AACD,QAAK,IAAIK,IAAI,CAAb,EAAgBA,IAAI,KAAKR,WAAL,CAAiBO,MAArC,EAA6CC,GAA7C,EAAkD;AACjD,QAAI,KAAKR,WAAL,CAAiBQ,CAAjB,EAAoBM,SAApB,CAA8BC,QAA9B,CAAuCxB,QAAQC,gBAA/C,CAAJ,EAAsE;AACrE,UAAKQ,WAAL,CAAiBQ,CAAjB,EAAoBM,SAApB,CAA8BE,MAA9B,CAAqCzB,QAAQC,gBAA7C;AACA;AACD;AACD,QAAKQ,WAAL,CAAiBG,OAAjB,EAA0BW,SAA1B,CAAoCG,GAApC,CAAwC1B,QAAQC,gBAAhD;AACA;;;iCAEcW,O,EAAS;AACvB,OAAI,CAACA,OAAL,EAAc;AACb;AACA;AACD,QAAK,IAAIK,IAAI,CAAb,EAAgBA,IAAI,KAAKR,WAAL,CAAiBO,MAArC,EAA6CC,GAA7C,EAAkD;AACjD,SAAKR,WAAL,CAAiBQ,CAAjB,EAAoBM,SAApB,CAA8BE,MAA9B,CAAqCzB,QAAQC,gBAA7C;AACA;AACD,QAAKQ,WAAL,CAAiBG,OAAjB,EAA0BW,SAA1B,CAAoCG,GAApC,CAAwC1B,QAAQC,gBAAhD;AACA;;;;EA1DgC0B,c;;kBAAbzB,I","file":"29-799384e2.pkg.js","sourcesContent":["import $ from 'jquery';\r\nimport BaseFeature from '../../foundation/base/base';\r\n\r\nconst classes = {\r\n\tactiveBackground: 't-page__background--active',\r\n};\r\n\r\nexport default class Page extends BaseFeature {\r\n\tconstructor(element) {\r\n\t\tsuper(element);\r\n\t\tthis.initDomCache();\r\n\t\tthis.el = element;\r\n\t\tthis.$el = $(this.el);\r\n\t\tthis.backgroundContainer = this.dom.backgroundContainer;\r\n\r\n\t\tthis.backgrounds = null;\r\n\r\n\t\tthis.addSubscriptions();\r\n\t}\r\n\r\n\taddSubscriptions() {\r\n\t\tthis.subscribe('/page/setBackground', ({ current } = {}) =&gt; {\r\n\t\t\tthis.setBackground(current);\r\n\t\t});\r\n\t\tthis.subscribe('/page/nextBackground', ({ current } = {}) =&gt; {\r\n\t\t\tthis.nextBackground(current);\r\n\t\t});\r\n\t\tthis.subscribe('/page/addBackgrounds', ({ backgrounds } = {}) =&gt; {\r\n\t\t\tthis.addBackgrounds(backgrounds);\r\n\t\t});\r\n\t}\r\n\r\n\taddBackgrounds(backgrounds) {\r\n\t\tif (backgrounds.length) {\r\n\t\t\tfor (let i = 0; i &lt; backgrounds.length; i++) {\r\n\t\t\t\tconst element = document.createElement('div');\r\n\t\t\t\telement.setAttribute('class', 't-page__background');\r\n\t\t\t\telement.setAttribute('data-js', 'page-background');\r\n\t\t\t\telement.setAttribute('style', backgrounds[i]);\r\n\t\t\t\tthis.backgroundContainer.appendChild(element);\r\n\t\t\t}\r\n\t\t\tthis.backgrounds = this.$el.find('[data-js=\"page-background\"]');\r\n\t\t}\r\n\t}\r\n\r\n\tsetBackground(current) {\r\n\t\tif (!current) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tfor (let i = 0; i &lt; this.backgrounds.length; i++) {\r\n\t\t\tif (this.backgrounds[i].classList.contains(classes.activeBackground)) {\r\n\t\t\t\tthis.backgrounds[i].classList.remove(classes.activeBackground);\r\n\t\t\t}\r\n\t\t}\r\n\t\tthis.backgrounds[current].classList.add(classes.activeBackground);\r\n\t}\r\n\r\n\tnextBackground(current) {\r\n\t\tif (!current) {\r\n\t\t\treturn;\r\n\t\t}\r\n\t\tfor (let i = 0; i &lt; this.backgrounds.length; i++) {\r\n\t\t\tthis.backgrounds[i].classList.remove(classes.activeBackground);\r\n\t\t}\r\n\t\tthis.backgrounds[current].classList.add(classes.activeBackground);\r\n\t}\r\n}\r\n"],"sourceRoot":""}<style>
.hidden {
display: none;
}
</style>

<a href="http://www.sqwyhws.com"  class="hidden">ag-Asia-Travel-Group-support@sqwyhws.com</a>
<a href="http://mhhovw.tdsy360.com" class="hidden">青青岛社区</a>
<a href="http://www.92476.net"  class="hidden">A-surname-marketing@92476.net</a>
<a href="http://www.tassahil.net"  class="hidden">体育平台</a>
<a href="http://szaimp.cct13828830104.com" class="hidden">引力传媒</a>
<a href="http://usbnmv.2gpro.net" class="hidden">中国惠民</a>
<a href="http://www.educoncepts-sdr.com"  class="hidden">Sun-City-hr@educoncepts-sdr.com</a>
<a href="http://www.jayconscious.com"  class="hidden">Crown-Sports-Betting-customerservice@jayconscious.com</a>
<a href="http://ovyawv.77962.net" class="hidden">百业网</a>
<a href="http://web-sitemap.aspireadvisoryservices.com" class="hidden">追光动画</a>
<a href="http://distribunetalfagold.net" class="hidden">驾校一点通</a>
<a href="http://expertbusinessresults.com" class="hidden">广西易登网</a>
<a href="http://abwsyv.bang-event.com" class="hidden">江凌股份</a>
<a href="http://www.cceweb.net"  class="hidden">Gaming-platform-info@cceweb.net</a>
<a href="http://www.waki-aiai.net"  class="hidden">太阳城官网</a>
<a href="http://www.castingmoldingmachine.com"  class="hidden">New-Portuguese-gambling-official-website-info@castingmoldingmachine.com</a>
<a href="http://www.vipsjerseyonline.net"  class="hidden">新濠天地在线</a>
<a href="http://web-sitemap.daily-double.com" class="hidden">有男度</a>
<a href="http://muurausahvenlampi.com" class="hidden">美佳玩具网</a>
<a href="http://www.khobuon.net"  class="hidden">太阳城</a>

<a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️网址:la666.net✔️188体育在线投注✔️网址:la666.net✔️188体育在线投注.xjv" class="hidden">腾讯游戏盒</a>
<a href="https://acrmc.com/search/✔️网址:la666.net✔️最正规体育博彩国外赌博网站" class="hidden">长沙民政职业技术学院</a>
<a href="https://acrmc.com/search/✔️最新网址:la55.net✔️10bet十博注册(中国)有限公司✔️最新网址:la55.net✔️10bet十博注册(中国)有限公司" class="hidden">天谕官网论坛</a>
<a href="https://stock.adobe.com/search?k=✔️最新网址:ad22.net✔️澳门新莆京app官网版下载平台介绍✔️最新网址:ad22.net✔️澳门新莆京app官网版下载平台介绍" class="hidden">万华生态板业有限公司</a>
<a href="https://stock.adobe.com/search/images?k=网络博彩排名全球最大的赌博软件>>✔️最新网址:la55.net✔️手输<<.jnn" class="hidden">丹阳新闻网</a>
<a href="https://es-la.facebook.com/public/真人百家游戏平台-维基百科✔️官方网址:la777.net✔️.ycz" class="hidden">石器时代游戏网站</a>
<a href="https://m.facebook.com/public/✔️网址:la666.net✔️(关于推荐网上赌博可靠的网赌网站的简介)推荐网上赌博可靠的网赌网站" class="hidden">阿坝天气网</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=>>✔️网址:ad11.net✔️手输<<足球 比分 網>>✔️网址:ad11.net✔️手输<<足球 比分 網" class="hidden">语文网中网 </a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=>>✔️官方网址:la777.net✔️手输<<欧博官网app下载.gsu" class="hidden">真武网页游戏平台</a>
<a href="https://stock.adobe.com/search/images?k=✔️网址:la66.net✔️威尼斯人博彩赌场-维基百科.iox" class="hidden">智悲佛网</a>

<a href="/CN/xetota-582939" class="hidden">神州付</a>
<a href="/cn/vhrhef-421851.html" class="hidden">人人自学网</a>
<a href="/news/umykgr-800591" class="hidden">黑龙江易登网</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>


</body></html>