每行 css 中屏幕特定列的中心

问题描述 投票:0回答:1

我是网络开发新手,作为我的第一个项目,我正在设计我正在开发的项目的可视化,我希望它看起来像这样:

我很难将星星放在每一行的中心。当前的代码如下所示:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Amarante&display=swap">
  <style>
    body {
      background-color: #124264;
      color: #000000;
      font-family: 'Amarante';
      margin: 0;
      /*display: flex;
      align-items: center;
      justify-content: flex-end; /* Adjusted alignment to right */
      height: 100vh;
      overflow: auto;
    }


    /* Style for the first image */
    .starImages {
      width: 90px; /* Set the desired width */
      height: auto; /* Maintain aspect ratio */
      vertical-align: middle; /* Align the star icon with text */
    }

    /* Remove bullet points from the list */
    #projectNamesList {
      list-style: none;
      display: grid; /* Use grid display */
      grid-template-columns: 1fr; /* One column for each item */
      /*align-items: flex-end; /* Align items to the right */
      padding: 0; /* Remove default padding */
      overflow-x: auto; /* Allow horizontal scrolling */
      /*justify-items: flex-end; /* Align items to the right */
      justify-items: center;
    }

  
    /* Style for individual list items */
    .projectItem {
      display: flex;
      align-items: center;
      white-space: nowrap; /* Prevent line breaks within items */
      position: relative; /* Position relative for adding line */
    }

    /* Add a gold line */
    .thinLine {
      position: relative;
      height: 2px;
      background-color: #E0B624;
      margin-left: 0px;

    }

    .thickLine {
      position: relative;
      height: 10px;
      background-color: #E0B624;
      z-index: -1
    }
  </style>
</head>
<body>
  <ul id="projectNamesList"></ul>

  <script>
    async function fetchData() {
      try {
        const response = await fetch('https://us-central1-project-organization-noa.cloudfunctions.net/getData'); // Cloud Function URL
        console.log(response);
        const data = await response.json();
        console.log(data);

        const projectNamesList = document.getElementById('projectNamesList');
        dataWithoutHeader = data.slice(1);
        dataWithoutHeader.forEach(row => {
          const listItem = document.createElement('li');
          listItem.classList.add('projectItem'); // Add the class for styling

          // Create a span for the project name
          const projectNameSpan = document.createElement('span');
          projectNameSpan.textContent = row[0];

          // Create an image element for the star icon
          const starIcon = document.createElement('img');
          starIcon.src = 'star.svg';
          starIcon.alt = 'Star';
          starIcon.classList.add('starImages');

          // Create the gold line element
          const thickLine = document.createElement('div');
          thickLine.classList.add('thickLine');
          daysSince = row[2];
          numericThickWidth = 7 * Math.sqrt(daysSince)
          thickWidth = numericThickWidth + 'px';
          thickLine.style.width = thickWidth;
          percent = row[5] / 100;
          thinWidth = numericThickWidth * ((1 / percent) - 1) + 'px';

          //thinWidth = parseInt();
          const thinLine = document.createElement('div');
          thinLine.classList.add('thinLine');
          thinLine.style.width = thinWidth;

          projectNameSpan.style.marginRight = - numericThickWidth + 'px';

          // Append the elements to the list item
          listItem.appendChild(projectNameSpan);
          listItem.appendChild(thickLine);
          listItem.appendChild(starIcon);
          listItem.appendChild(thinLine);

          projectNamesList.appendChild(listItem);
        });

        // Center scroll
        const halfWidth = projectNamesList.scrollWidth / 2;
        const halfViewport = window.innerWidth / 2;
        projectNamesList.scrollLeft = halfWidth - halfViewport;

      } catch (error) {
        console.error('Error fetching data:', error);
      }
    }

    fetchData();
  </script>
</body>
</html>

这是网站现在的样子,带有不居中的星星:

我尝试过的事情:

  • 弹性盒子
  • 搜索其他 stackoverflow 答案(它们都是关于居中文本而不是元素)
  • 使用网格
  • 将我能找到的所有属性设置为“居中”

谢谢您的指点!

html css centering
1个回答
0
投票

我将使用三列网格来实现此布局,左列包含粗线和标题,中间列包含星号,右列包含细线。

#projectNamesList {
  display: grid;
  grid-template-columns: auto 30px auto;
}

演示的工作片段:

async function fetchData() {
      try {
        const response = await fetch('https://us-central1-project-organization-noa.cloudfunctions.net/getData'); // Cloud Function URL
        console.log(response);
        const data = await response.json();
        console.log(data);

        const projectNamesList = document.getElementById('projectNamesList');
        dataWithoutHeader = data.slice(1);
        dataWithoutHeader.forEach(row => {
          const listItem = document.createElement('li');
          listItem.classList.add('projectItem'); // Add the class for styling

          // Create a span for the project name
          const projectNameSpan = document.createElement('span');
          projectNameSpan.textContent = row[0];

          // Create an image element for the star icon
          const starIcon = document.createElement('img');
          starIcon.src = 'https://mario.wiki.gallery/images/b/bb/MPS_Favicon.svg';
          starIcon.alt = 'Star';
          starIcon.classList.add('starImages');

          // Create the gold line element
          const thickLine = document.createElement('div');
          thickLine.classList.add('thickLine');
          daysSince = row[2];
          numericThickWidth = 7 * Math.sqrt(daysSince)
          thickWidth = numericThickWidth + 'px';
          thickLine.style.width = thickWidth;
          percent = row[5] / 100;
          thinWidth = numericThickWidth * ((1 / percent) - 1) + 'px';

          //thinWidth = parseInt();
          const thinLine = document.createElement('div');
          thinLine.classList.add('thinLine');
          thinLine.style.width = thinWidth;

          const lineWithTitle = document.createElement('div');
          lineWithTitle.classList.add('lineWithTitle');

          // Append the elements to the list item
          lineWithTitle.appendChild(thickLine);
          lineWithTitle.appendChild(projectNameSpan);
          listItem.appendChild(lineWithTitle);
          listItem.appendChild(starIcon);
          listItem.appendChild(thinLine);

          projectNamesList.appendChild(listItem);
        });

      } catch (error) {
        console.error('Error fetching data:', error);
      }
    }

    fetchData();
body {
  background-color: #124264;
  color: #000000;
  font-family: 'Amarante';
  margin: 0;
  height: 100vh;
  overflow: auto;
}

.starImages {
  width: 100%;
}

#projectNamesList {
  list-style: none;
  display: grid;
  grid-template-columns: auto 30px auto;
  align-items: center;
}

.projectItem {
  display: contents;
}

.lineWithTitle {
  text-align: right;
  position: relative;
}

.thickLine {
  height: 10px;
  background-color: #E0B624;
  margin: 0 0 0 auto;
}

.thickLine+span {
  position: absolute;
  right: 0;
  top: -5px;
}

.thinLine {
  height: 2px;
  background-color: #E0B624;
}
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Amarante&display=swap">

  <ul id="projectNamesList"></ul>

© www.soinside.com 2019 - 2024. All rights reserved.