如何加载hdp文件作为背景图片

How to load hdp file as background image

我将 jpg 文件转换为 hdp 文件以加快网站加载速度。 我想通过后台加载这些文件 属性。 但是,没有从网站加载 hdp 文件。 如何使用 hdp 文件? 服务器是windows10 / Apache2.4

{背景:url(./image/file_name.hdp) 不重复;背景大小:覆盖;}

你必须这样使用。

class-name-here {
  background-image: url('./image/file_name.hdp') 
  background-repeat: no-repeat;
  background-size:cover;
}