<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://tskzzq.dzflgg.net" class="hidden">搜房网惠州二手房网</a>
<a href="http://www.zgdx8.com"  class="hidden">威廉希尔</a>
<a href="http://www.at-funeral.com"  class="hidden">European-Cup-buying-feedback@at-funeral.com</a>
<a href="http://www.najwc.com"  class="hidden">威尼斯人博彩</a>
<a href="http://rpzcao.bydcct.com" class="hidden">武汉金牛经济发展有限公司</a>
<a href="http://txtekt.showstoppa.net" class="hidden">安康家园</a>
<a href="http://wzlure.godispower.net" class="hidden">龙江时评</a>
<a href="http://www.swissabc.net"  class="hidden">体育博彩</a>
<a href="http://mgkfgm.yingwutv.com" class="hidden">恩施网络电视</a>
<a href="http://www.letaoyizs.com"  class="hidden">皇冠体育博彩</a>
<a href="http://afruiw.mng-cz.com" class="hidden">三门峡百姓网</a>
<a href="http://www.eduftp.net"  class="hidden">太阳城</a>
<a href="http://web-sitemap.parkviewhousebb.com" class="hidden">松下电器</a>
<a href="http://www.khobuon.net"  class="hidden">太阳城</a>
<a href="http://www.asungroup.com"  class="hidden">太阳城集团</a>
<a href="http://zdaxdh.arvolt.net" class="hidden">MTV下载网</a>
<a href="http://yepefv.hungrong.com" class="hidden">远洲股份</a>
<a href="http://planetaprodental.com" class="hidden">湖州赶集网</a>
<a href="http://xitjdx.jijiayun.net" class="hidden">北京叶子整形美容医院</a>
<a href="http://iciiik.cniter.net" class="hidden">中国▪亳州</a>

<a href="https://stock.adobe.com/search/images?k=tianbo天博体育官方网站✔️最新网址:ad22.net✔️tianbo天博体育官方网站✔️最新网址:ad22.net✔️.cvy" class="hidden">英利集团</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=大发官方网页登录(中国)有限公司✔️官方网址:la777.net✔️.cwr" class="hidden">寻医问药专家网</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=可信的博彩平台排行榜(中国)有限公司✔️最新网址:ad22.net✔️" class="hidden">高铁网_列车时刻表查询</a>
<a href="https://stock.adobe.com/search/images?k=澳门拉斯维加斯app平台介绍✔️最新网址:ad22.net✔️.cvj" class="hidden">聊城违章查询网</a>
<a href="https://m.facebook.com/public/✔️网址:la66.net✔️最好的网络博彩-最好的网络博彩官方网站.tsb" class="hidden">博问</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=高品质的互联网软件开发平台-高品质的互联网软件开发平台官方网站✔️官方网址:la777.net✔️.avn" class="hidden">汽车大世界凯迪拉克主页</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=bwin必赢体育官网-维基百科✔️最新网址:ad22.net✔️" class="hidden">玉林天气预报</a>
<a href="https://stock.adobe.com/search?k=卡塔尔欧洲杯下注平台平台介绍✔️官方网址:la777.net✔️卡塔尔欧洲杯下注平台平台介绍✔️官方网址:la777.net✔️" class="hidden">3D试衣科技</a>
<a href="https://m.facebook.com/public/✔️最新网址:ad22.net✔️welcome皇冠手机版下载(中国)有限公司" class="hidden">深圳吉屋网</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️网址:la666.net✔️pg电子平台注册平台介绍.ihx" class="hidden">九森林业</a>

<a href="/news/siazbp-208736" class="hidden">个推</a>
<a href="/news/odmgoc-368226" class="hidden">中国护士网</a>
<a href="/html/ridbzo-158150.html" class="hidden">首都航空官方网站</a>
<a href="/sttcs/hot-news/uninjuriously.html" class="hidden">一呆短租</a>
<a href="/html/ewwfjh-214395.html" class="hidden">句容第一房产网</a>


</body></html>