Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Прописывание размеров изображений для баннеров


Recommended Posts

Здравствуйте.

Хочу прописать размеры изображений для синдартных баннеров, чтобы хоть как-то уменьшить CLS

В контроллере banner.php есть

foreach ($results as $result) {
			if (is_file(DIR_IMAGE . $result['image'])) {
				$data['banners'][] = array(
					'title' => $result['title'],
					'link'  => $result['link'],
					'image' => $this->model_tool_image->resize($result['image'], $setting['width'], $setting['height'])
				);
			}
		}

 

Если я добавлю

'banner-width' => $setting['width'],
'banner-height' => $setting['height']

и подкорректирую вывод в twig

<img src="{{ banner['image'] }}" alt="{{ banner['title'] }}" height={{ banner['banner-height'] }} width={{ banner['banner-width'] }} class="img-responsive" />

это бугдет корректно?

 

Спасипотому что

Link to comment
Share on other sites


09.03.2022 в 12:29, ivane сказал:

это бугдет корректно?

Да. Ход мыслей верный. Вывод в twig , нет.

Я бы как то ик сгделал...

catalog/controller/extension/module/banner.php

перед
 

foreach ($results as $result) {

добавил
 

$data['images_dimensions'] = [
 'image_width' => $setting['width'],
 'image_height' => $setting['height']
];

А в файле catalog/view/theme/Ваш_Шаблон/template/extension/module/banner.twig 

Заменил вывод картинок
 

<img src="{{ banner.image }}" alt="{{ banner.title }}" class="img-responsive" />

на

<picture>
 <source type="image/jpeg" srcset="{{ banner.image }}">
 <img src="{{ banner.image }}" alt="banner.title" title="banner.title" class="img-responsive" {{ images_dimensions ? 'width="' ~ images_dimensions.image_width ~ '" height="' ~ images_dimensions.image_height ~ '"' : '' }}  />
</picture>

В модуле SlidShow ик же по аналогии всё гделается.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.