<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://gxhfao.python-pills.com" class="hidden">设计圈</a>
<a href="http://www.hongjiuchina.com"  class="hidden">esball-contact@hongjiuchina.com</a>
<a href="http://www.tdwang.net"  class="hidden">皇冠现金网</a>
<a href="http://www.cesametal.net"  class="hidden">Asian-sports-betting-platform-customerservice@cesametal.net</a>
<a href="http://www.waki-aiai.net"  class="hidden">Sun-City-Macau-hr@waki-aiai.net</a>
<a href="http://www.78278.net"  class="hidden">ag8亚游</a>
<a href="http://irabmb.lollywagon.com" class="hidden">杭州网热点专题</a>
<a href="http://koddyc.c178.net" class="hidden">伴游天下网</a>
<a href="http://www.xlhl.net"  class="hidden">Buy-ball-app-sales@xlhl.net</a>
<a href="http://www.kongtiao11.com"  class="hidden">博彩网站</a>
<a href="http://vqyjsf.ybqixing.com" class="hidden">宁波大红鹰学院</a>
<a href="http://www.haerbinjiudian.com"  class="hidden">沙巴体育</a>
<a href="http://www.lyhymh.net"  class="hidden">Sports-betting-platform-careers@lyhymh.net</a>
<a href="http://xinrancompressor.net" class="hidden">水艺网</a>
<a href="http://www.turuntilataksit.net"  class="hidden">Sun-City-sales@turuntilataksit.net</a>
<a href="http://rbglih.rongkangyy.com" class="hidden">视界网看点扫描</a>
<a href="http://www.kongtiao11.com"  class="hidden">Sports-betting-service@kongtiao11.com</a>
<a href="http://hodrsm.ninohq.com" class="hidden">新疆易登网</a>
<a href="http://www.media2v-api.net"  class="hidden">365-Sports-marketing@media2v-api.net</a>
<a href="http://gotchasportfishing.com" class="hidden">江苏卫视非诚勿扰报名网站</a>

<a href="https://tw.dictionary.yahoo.com/dictionary?p=2024欧洲杯下注网站(中国)有限公司✔️官方网址:la777.net✔️.djk" class="hidden">助美网 </a>
<a href="https://acrmc.com/search/>>✔️最新网址:ad22.net✔️手输<<全网所有信誉网赌.zpw" class="hidden">瑞聚股份</a>
<a href="https://stock.adobe.com/search/images?k=✔️最新网址:la55.net✔️葡萄京手机app下载平台介绍" class="hidden">七台河百姓网</a>
<a href="https://m.facebook.com/public/✔️网址:la666.net✔️科普一下e世博esball安卓版的百科.zdz" class="hidden">猪头三房产网</a>
<a href="https://es-la.facebook.com/public/>>✔️最新网址:la55.net✔️手输<<有信誉的网投十大>>✔️最新网址:la55.net✔️手输<<有信誉的网投十大.zxf" class="hidden">南京林业大学图书馆</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=>>✔️网址:la666.net✔️手输<<新皇冠手机登录.luu" class="hidden">渤海论坛</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=2024欧洲杯竞猜-维基百科✔️网址:la66.net✔️2024欧洲杯竞猜-维基百科✔️网址:la66.net✔️.pnc" class="hidden">南京车管所</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️最新网址:ad22.net✔️最新信誉赌钱下注平台介绍✔️最新网址:ad22.net✔️最新信誉赌钱下注平台介绍.hzc" class="hidden">1039驾车网</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️网址:la66.net✔️威尼斯送38元-维基百科.qrp" class="hidden">光伏太阳能网</a>
<a href="https://es-la.facebook.com/public/✔️网址:ad11.net✔️立博客户端app下载-立博客户端app下载官方网站.iyc" class="hidden">辽宁招生考试之窗</a>

<a href="/html/rhodaz-635252" class="hidden">冯耀宗博客</a>
<a href="/html/msuehd-973856.html" class="hidden">淮北人论坛</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>
<a href="/html/ffiltv-181139.html" class="hidden">笔趣阁小说阅读网</a>
<a href="/sttcs/hot-news/Athericera.html" class="hidden">好彩网论坛</a>


</body></html>