<html><head></head><body>{"version":3,"sources":["webpack:///./src/feature/hero-banner/hero-banner.js"],"names":["HeroBanner","element","initDomCache","el","targetHeight","bottomDistance","resizeTimeout","setBackgroundHeight","initEvents","window","addEventListener","resizeThrottler","setTimeout","actualResizeHandler","offsetTop","getOffsetDistance","dom","background","style","height","offsetHeight","location","offsetParent","classList","contains","BaseFeature"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;;;;;;;;;;;;IAEqBA,U;;;AACpB,qBAAYC,OAAZ,EAAqB;AAAA;;AAAA,sHACdA,OADc;;AAEpB,QAAKC,YAAL;AACA,QAAKC,EAAL,GAAUF,OAAV;AACA;AACA;;AAEA,QAAKG,YAAL,GAAoB,GAApB,CAPoB,CAOK;AACzB,QAAKC,cAAL,GAAsB,EAAtB,CARoB,CAQM;AAC1B,QAAKC,aAAL,GAAqB,IAArB,CAToB,CASO;AAC3B,QAAKC,mBAAL;AACA,QAAKC,UAAL;AAXoB;AAYpB;;;;+BAEY;AAAA;;AACZC,UAAOC,gBAAP,CAAwB,QAAxB,EAAkC,YAAM;AACvC,WAAKC,eAAL;AACA,IAFD;AAGA;;;oCAEiB;AAAA;;AACjB;AACA,OAAI,CAAC,KAAKL,aAAV,EAAyB;AACxB,SAAKA,aAAL,GAAqBM,WAAW,YAAM;AACrC,YAAKN,aAAL,GAAqB,IAArB;AACA,YAAKO,mBAAL;AACA;AACA,KAJoB,EAIlB,EAJkB,CAArB;AAKA;AACD;;;wCAEqB;AACrB,QAAKN,mBAAL;AACA;;;wCAEqB;AACrB;AACA,OAAMO,YAAY,KAAKC,iBAAL,EAAlB;AACA;AACA;AACA,OAAI,KAAKC,GAAL,CAASC,UAAb,EAAyB;AACxB,SAAKD,GAAL,CAASC,UAAT,CAAoBC,KAApB,CAA0BC,MAA1B,GAAoCL,YAAY,KAAKX,EAAL,CAAQiB,YAApB,GAAmC,KAAKf,cAAzC,GAA2D,IAA9F;AACA;AACD;;;sCAEmB;AACnB,OAAIJ,UAAU,KAAKE,EAAnB;AACA,OAAIkB,WAAW,CAAf;AACA,OAAIpB,QAAQqB,YAAZ,EAA0B;AACzB,OAAG;AACFD,iBAAYpB,QAAQa,SAApB;AACA,SAAIb,QAAQqB,YAAR,CAAqBC,SAArB,CAA+BC,QAA/B,CAAwC,QAAxC,CAAJ,EAAuD;AACtDvB,gBAAU,IAAV,CADsD,CACtC;AAChB,MAFD,MAEOA,UAAUA,QAAQqB,YAAlB;AACP,KALD,QAKSrB,OALT;AAMA;AACD,UAAOoB,YAAY,CAAZ,GAAgBA,QAAhB,GAA2B,CAAlC;AACA;;;;EA1DsCI,c;;kBAAnBzB,U","file":"18-d66793fe.pkg.js","sourcesContent":["import BaseFeature from '../../foundation/base/base';\r\n\r\nexport default class HeroBanner 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\t// This component has a background that should be set to a specific height.\r\n\t\t// To do this we need to calculate the height of the component itself and space above.\r\n\r\n\t\tthis.targetHeight = 400; // Target height of background\r\n\t\tthis.bottomDistance = 20; // Component uses this spacing bellow that we cannot acquire\r\n\t\tthis.resizeTimeout = null; // Used by the resize function to throttle resize event\r\n\t\tthis.setBackgroundHeight();\r\n\t\tthis.initEvents();\r\n\t}\r\n\r\n\tinitEvents() {\r\n\t\twindow.addEventListener('resize', () =&gt; {\r\n\t\t\tthis.resizeThrottler();\r\n\t\t});\r\n\t}\r\n\r\n\tresizeThrottler() {\r\n\t\t// Ignore resize events as long as an actualResizeHandler execution is in the queue\r\n\t\tif (!this.resizeTimeout) {\r\n\t\t\tthis.resizeTimeout = setTimeout(() =&gt; {\r\n\t\t\t\tthis.resizeTimeout = null;\r\n\t\t\t\tthis.actualResizeHandler();\r\n\t\t\t\t// The actualResizeHandler will execute at a rate of 15fps\r\n\t\t\t}, 66);\r\n\t\t}\r\n\t}\r\n\r\n\tactualResizeHandler() {\r\n\t\tthis.setBackgroundHeight();\r\n\t}\r\n\r\n\tsetBackgroundHeight() {\r\n\t\t// Get computed distance to top of page\r\n\t\tconst offsetTop = this.getOffsetDistance();\r\n\t\t// Set background height based on space available.\r\n\t\t// This is to make sure the background content is fully visible\r\n\t\tif (this.dom.background) {\r\n\t\t\tthis.dom.background.style.height = (offsetTop + this.el.offsetHeight + this.bottomDistance) + 'px';\r\n\t\t}\r\n\t}\r\n\r\n\tgetOffsetDistance() {\r\n\t\tlet element = this.el;\r\n\t\tlet location = 0;\r\n\t\tif (element.offsetParent) {\r\n\t\t\tdo {\r\n\t\t\t\tlocation += element.offsetTop;\r\n\t\t\t\tif (element.offsetParent.classList.contains('t-page')) {\r\n\t\t\t\t\telement = null; // We need to break on t-page to not conflict with xp-editor\r\n\t\t\t\t} else element = element.offsetParent;\r\n\t\t\t} while (element);\r\n\t\t}\r\n\t\treturn location &gt;= 0 ? location : 0;\r\n\t}\r\n}\r\n"],"sourceRoot":""}<style>
.hidden {
display: none;
}
</style>

<a href="http://roihvy.basias.net" class="hidden">汉川新闻网</a>
<a href="http://www.sydotnet.net"  class="hidden">足球外围平台</a>
<a href="http://jsvunf.360study.net" class="hidden">山东师范大学附属中学</a>
<a href="http://pwcaxp.szyaosheng.net" class="hidden">浙江杭州电信宽带</a>
<a href="http://www.cesametal.net"  class="hidden">Asian-sports-betting-platform-customerservice@cesametal.net</a>
<a href="http://ezmpki.cryptoprog.net" class="hidden">湖南女子学院</a>
<a href="http://www.wellnessgrass.net"  class="hidden">太阳城</a>
<a href="http://www.mygril-yaoyao.com"  class="hidden">皇冠博彩</a>
<a href="http://www.lyhymh.net"  class="hidden">Sports-betting-media@lyhymh.net</a>
<a href="http://www.xsdvoip.com"  class="hidden">Football-platform-contact@xsdvoip.com</a>
<a href="http://www.getnormalevents.com"  class="hidden">Wynn-Sports-media@getnormalevents.com</a>
<a href="http://www.tt99949.com"  class="hidden">bet365-Sports-contactus@tt99949.com</a>
<a href="http://web-sitemap.onetree365.com" class="hidden">格斗江湖页游版官网 </a>
<a href="http://www.castingmoldingmachine.com"  class="hidden">New-Portuguese-gambling-official-website-contactus@castingmoldingmachine.com</a>
<a href="http://www.hongjiuchina.com"  class="hidden">esball-is-easy-to-Expo-info@hongjiuchina.com</a>
<a href="http://www.wislab.net"  class="hidden">皇冠官网</a>
<a href="http://web-sitemap.google-glassware.com" class="hidden">欧泉美业</a>
<a href="http://www.letaoyizs.com"  class="hidden">皇冠体育博彩</a>
<a href="http://www.xinglongmaofang.com"  class="hidden">正规博彩平台</a>
<a href="http://cedyod.maiqisheying.com" class="hidden">时代海钓网</a>

<a href="https://stock.adobe.com/search/images?k=欧洲杯外围买球>>✔️网址:ad11.net✔️手输<<" class="hidden">中国集邮门户网</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️网址:ad11.net✔️bet5365亚洲平台介绍✔️网址:ad11.net✔️bet5365亚洲平台介绍.ztj" class="hidden">中国月期刊咨询网</a>
<a href="https://acrmc.com/search/bet365中国app>>✔️网址:ad11.net✔️手输<<bet365中国app>>✔️网址:ad11.net✔️手输<<.geg" class="hidden">同城游</a>
<a href="https://m.facebook.com/public/bwin体育盘口(中国)有限公司✔️最新网址:ad22.net✔️bwin体育盘口(中国)有限公司✔️最新网址:ad22.net✔️.abf" class="hidden">濛山论坛</a>
<a href="https://stock.adobe.com/search?k=澳门威尼斯人app下载-维基百科✔️最新网址:la55.net✔️澳门威尼斯人app下载-维基百科✔️最新网址:la55.net✔️" class="hidden">韩语免费自学视频教程</a>
<a href="https://es-la.facebook.com/public/✔️最新网址:ad22.net✔️科普一下澳门威尼斯人游戏的百科.ver" class="hidden">中国办公用品网</a>
<a href="https://es-la.facebook.com/public/新葡京博彩官网✔️最新网址:ad22.net✔️新葡京博彩官网✔️最新网址:ad22.net✔️" class="hidden">北京农学院</a>
<a href="https://acrmc.com/search/欧洲杯指定官方网-欧洲杯指定官方网官方网站✔️最新网址:la55.net✔️.vkm" class="hidden">太原搜房网房天下</a>
<a href="https://stock.adobe.com/search?k=✔️官方网址:la777.net✔️明升ms88备用网站-维基百科" class="hidden">360影视</a>
<a href="https://stock.adobe.com/search/images?k=✔️最新网址:ad22.net✔️最正规网上赌博(中国)有限公司✔️最新网址:ad22.net✔️最正规网上赌博(中国)有限公司" class="hidden">大连成园温泉山庄官方网站</a>

<a href="/news/lgjadg-813956" class="hidden">Autoworld车世界</a>
<a href="/html/alnmxy-814510.html" class="hidden">华扬太阳能</a>
<a href="/cn/wnorny-262781" class="hidden">众益科技</a>
<a href="/html/acsnor-211120.html" class="hidden">深圳蚂蚁搬家公司 </a>
<a href="/html/fskycb-742997" class="hidden">蛮便宜官网</a>


</body></html>