javascript 将英雄图像变成背景图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 将英雄图像变成背景图像相关的知识,希望对你有一定的参考价值。

$(document).ready(function() {

$(".bg-image").each(function() {
  var img = $(this).find("img");
  if (img.attr("src") !== undefined) {
    $(this).css({
      "background-image": "url(" + img.attr("src") + ")",
      });
    img.remove();
  }
});

// selects image with class "background"
$('.bkg').each(function(){
  var img = $(this).find("img.background");
  if (img.attr("src") !== undefined) {
    $(this).css({
      "background-image": "url(" + img.attr("src") + ")",
      });
    img.remove();
  }
});

}); //end doc ready

以上是关于javascript 将英雄图像变成背景图像的主要内容,如果未能解决你的问题,请参考以下文章

javascript 默认英雄背景图像

图像 100% 的 div

如何将图像设置为画布背景而不是让它在 Android Studio/JavaScript 中填充颜色

将鼠标悬停在图像上会使该图像成为全屏背景

javascript将图像裁剪到画布

使用 javascript 动态更改 <div> 背景图像