%PDF- %PDF-
Direktori : /home/bitrix/www/bitrix/components/bitrix/landing.demo/templates/.default/ |
Current File : //home/bitrix/www/bitrix/components/bitrix/landing.demo/templates/.default/script.min.js |
(function(){"use strict";BX.namespace("BX.Landing.Component");BX.Landing.Component.Demo=function(i){this.wrapper=i.wrapper;this.inner=i.inner;this.tiles=i.tiles;this.isShow=false;this.startHeight=0;this.innerBlock=null;this.handleMouseEnter=this.handleMouseEnter.bind(this);this.handleMouseLeave=this.handleMouseLeave.bind(this);this.createTileList();this.bindTitle();BX.addCustomEvent(window,"Rest:AppLayout:ApplicationInstall",BX.delegate(this.appInstall,this))};BX.Landing.Component.Demo.prototype={createTileList:function(){new BX.Landing.TileGrid({wrapper:this.wrapper,inner:this.inner,tiles:this.tiles,sizeSettings:{minWidth:250,maxWidth:281}})},handleMouseEnter:function(i){this.showTitle(i)},handleMouseLeave:function(i){this.hideTitle(i)},bindTitle:function(){this.tiles.forEach(function(i){var t=i.querySelector(".landing-item-desc-open");if(t){BX.bind(t,"click",function(t){t.preventDefault();this.handleMouseEnter(i)}.bind(this));BX.bind(i,"mouseleave",function(t){this.handleMouseLeave(i)}.bind(this))}},this)},showTitle:function(i){this.innerBlock=i.querySelector(".landing-item-desc-inner");var t=i.querySelector(".landing-item-desc-height");var e=this.innerBlock.offsetTop;i.classList.add("landing-tile-title-show");this.innerBlock.style.paddingTop=e+"px";this.innerBlock.style.marginBottom=e+"px";this.startHeight=BX.style(this.innerBlock,"height");this.innerBlock.style.height=t.offsetHeight+"px";this.isShow=true},hideTitle:function(i){if(this.isShow){this.innerBlock.style.height=this.startHeight;setTimeout(function(){i.classList.remove("landing-tile-title-show");this.innerBlock.style.paddingTop=0;this.innerBlock.style.marginBottom=0}.bind(this),230);this.isShow=false}},appInstall:function(i){window.location.reload()}}})();