添加一些样式后,背景图像消失

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加一些样式后,背景图像消失相关的知识,希望对你有一定的参考价值。

请原谅我,如果我的问题很愚蠢,我对所有这些技术都很陌生。我的目标是添加图像背景的默认大小,而不是缩放,因为它是一个大尺寸的图片,问题是当我添加一些样式,图像不显示和背景变空白。顺便说一下,IM在这个背景图像上使用particle.js。

  <!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Infinite Space !</title>
  <link rel="stylesheet" href="style.css">
</head>
<body >
  <div id="particles-js"></div>

  //particle-js configues
  <script src="https://cdn.jsdelivr.net/npm/particles.js@2.0.0/particles.min.js">
  </script>
  <script>
    particlesJS.load('particles-js', 'particles.json', function() 
      console.log('callback - particles.js config loaded');
      );
  </script>


  </div>
</body>
</html>



 #particles-js

  background: url("https://d14xs1qewsqjcd.cloudfront.net/assets/bg-header-star.jpg")
  width: 100%;
  min-height: 800px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* background-attachment: fixed;

答案

您没有在background属性后添加分号:

#particles-js

  background: url("https://d14xs1qewsqjcd.cloudfront.net/assets/bg-header-star.jpg") /* <---- Semicolon goes here*/
  width: 100%;
  min-height: 800px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* background-attachment: fixed;  /* Also you didnt close this comment */

以上是关于添加一些样式后,背景图像消失的主要内容,如果未能解决你的问题,请参考以下文章

php 将后缩略图作为背景图像添加到任何div

iOS UIButton在将背景图像设置为nil后消失

当我从纵向模式更改为横向时,按钮背景图像消失

全景背景图像淡入动画问题?

在来回导航几次后,背景图像消失了

如何在 iOS 6 中向分组样式 UITableViewController 添加背景图像?