From c7d0d3f2c8101d6e8608019810e66dc864728de8 Mon Sep 17 00:00:00 2001 From: fomichev Date: Thu, 3 Apr 2025 17:42:46 +0300 Subject: [PATCH] =?utf8?q?=D1=84=D1=8D=D0=BD=D1=81=D0=B8=D0=B1=D0=BE=D0=BA?= =?utf8?q?=D1=81=20=D0=B4=D0=BB=D1=8F=20=D0=B2=D0=B8=D0=B4=D0=B5=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- erp24/views/bouquet/index.php | 35 +++++++++++++++-------------------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/erp24/views/bouquet/index.php b/erp24/views/bouquet/index.php index feda1d26..134fe0f8 100644 --- a/erp24/views/bouquet/index.php +++ b/erp24/views/bouquet/index.php @@ -165,19 +165,17 @@ $this->title = 'Содержание матрицы';
" . Html::a( - Html::tag('video', '', [ - 'class' => 'video-preview', - 'src' => Url::to($model->presentation->url ?? null), - 'style' => 'width: 100%; height: 100%; object-fit: cover;', - 'autoplay' => true, - 'muted' => true, - 'loop' => true, - 'playsinline' => true, + // Можно использовать превью-изображение или сам тег video в виде превью (хотя лучше заменить на картинку-превью) + Html::img($previewImageUrls[1], [ + 'style' => 'width: 100%; height: 100%; object-fit: cover;', ]), - Url::to($model->presentation->url ?? null), + 'javascript:;', // ссылка не должна вести никуда [ 'data-fancybox' => $galleryId, - 'data-type' => 'video' + 'data-src' => '', + 'data-type' => 'html' ] ) . "
Презентация
@@ -199,19 +197,16 @@ $this->title = 'Содержание матрицы';
" . Html::a( - Html::tag('video', '', [ - 'class' => 'video-preview', - 'src' => Url::to($model->buildProcess->url ?? null), - 'style' => 'width: 100%; height: 100%; object-fit: cover;', - 'autoplay' => true, - 'muted' => true, - 'loop' => true, - 'playsinline' => true, + Html::img($previewImageUrls[2], [ + 'style' => 'width: 100%; height: 100%; object-fit: cover;', ]), - Url::to($model->buildProcess->url ?? null), + 'javascript:;', [ 'data-fancybox' => $galleryId, - 'data-type' => 'video' + 'data-src' => '', + 'data-type' => 'html' ] ) . "
Процесс сборки
-- 2.39.5