django cms 和响应图像
django cms and responsive images
我正在使用 django 和 django-cms 构建响应式网站。到目前为止一切都很好。现在我需要指定响应图像并将其传送到不同的设备。你自己是怎么解决这个问题的?
网站作者是否可以在后台上传不同尺寸(如小、中、大)的图片以与 srcset 一起使用(可能与 django-cascade) Or are there automated solutions for django and django-cms like the php-project adaptive images.
我找到了 django-daguerre,但我不确定如何使用 django-cms 实现它。还有 django-responsive-images 1.0.2 包。
所以我想问一下你是如何为你的项目解决这个问题的。
这是我在 djangocms 中对响应式(和视网膜)图像所做的。
我使用THUMBNAIL_HIGH_RESOLUTION = True
设置easy_thumbnails
我对模板中的img
标签使用cmsplugin_filer_image
for my images. I overwrite its template default.html
by adding srcset
and Twitter bootstrap's img-responsive
class。
您当然也可以使用基金会的 interchange, retina.js 或您自己的 css/js 解决方案来获取相应分辨率所需的图片。
我正在使用 django 和 django-cms 构建响应式网站。到目前为止一切都很好。现在我需要指定响应图像并将其传送到不同的设备。你自己是怎么解决这个问题的?
网站作者是否可以在后台上传不同尺寸(如小、中、大)的图片以与 srcset 一起使用(可能与 django-cascade) Or are there automated solutions for django and django-cms like the php-project adaptive images.
我找到了 django-daguerre,但我不确定如何使用 django-cms 实现它。还有 django-responsive-images 1.0.2 包。
所以我想问一下你是如何为你的项目解决这个问题的。
这是我在 djangocms 中对响应式(和视网膜)图像所做的。
我使用
THUMBNAIL_HIGH_RESOLUTION = True
设置easy_thumbnails
我对模板中的
img
标签使用cmsplugin_filer_image
for my images. I overwrite its templatedefault.html
by addingsrcset
and Twitter bootstrap'simg-responsive
class。
您当然也可以使用基金会的 interchange, retina.js 或您自己的 css/js 解决方案来获取相应分辨率所需的图片。