1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /**
- * @var $this \yii\web\View
- * Баннер в шапке. Он показывается для десктопа как сквозной, а для мобильной версии он показывается везде, кроме главной
- */
- $current = \yii\helpers\Url::current();
- ?>
- <div class="header-banner" >
- <?php if(!Yii::$app->deviceDetect->isMobile()):?>
- <div class="header-banner_desktop">
- <div id="adfox_167229138467569665"></div>
- <script>
- window.yaContextCb.push(() => {
- // eslint-disable-next-line no-undef
- Ya.adfoxCode.create({
- ownerId: 279920,
- containerId: 'adfox_167229138467569665',
- params: {
- pp: 'g',
- ps: 'dbpj',
- p2: 'hiyx'
- }
- })
- })
- </script>
- </div>
- <?php endif;?>
- <?php
- $controller = Yii::$app->controller->id;
- $action = Yii::$app->controller->action->id;
- if($controller!="site" && $action!="index" && Yii::$app->deviceDetect->isMobile()):?>
- <div class="header-banner_mobile" style="height:250px;margin-bottom: 15px;text-align: center;display: flex;justify-content: center;">
- <div id="adfox_163238723987728973" ><img src="https://www.amic.ru/img/adv_placeholder.jpg" height="100%" class="placeholder"></div>
- <script>
- window.yaContextCb.push(() => {
- // eslint-disable-next-line no-undef
- Ya.adfoxCode.create({
- ownerId: 279920,
- containerId: 'adfox_163238723987728973',
- params: {
- pp: 'g',
- ps: 'dbpj',
- p2: 'hizb'
- },
- onRender: function() {
- const placeholder = document.querySelector('.header-banner_mobile .placeholder');
- // placeholder.style.opacity = 0;
- setTimeout(function (){
- placeholder.style.opacity = 0;
- setTimeout(() => {
- placeholder.remove();
- })
- },100)
- },
- })
- })
- </script>
- </div>
- <?php endif;?>
- </div>
|