React Application:如何为图片创建黑色覆盖?

时间:2019-07-10 03:34:14

标签: css reactjs react-redux overlay

我正在尝试使用ReactJS和CSS3为应用程序标题中的图片创建黑色覆盖。但是,无论我做什么,都无法正常工作。过去,我曾尝试引用旧项目,设法将其完成,还尝试了StackOverflow寻求答案。但是,没有任何效果。

有人可以帮助我了解我做错了什么以及如何解决此问题?我真的很感激。

Header.js

import React from 'react';
// import { Link } from 'react-router-dom';
import Button from 'react-bootstrap/Button';
import ButtonToolBar from 'react-bootstrap/ButtonToolbar';
import './header.css';

const Header = () => {
    return (
        <div className="header">
            <h1 className="title">Linguist Otaku</h1>
            <ButtonToolBar>
                <Button href="/quiz" size="lg" id="quiz-btn">
                    Quiz Now
                </Button>
            </ButtonToolBar>
        </div>
    )
}

export default Header;

Header.css

:root{
    --mainOpacity: rgb(0, 0, 0, .55);
}

.header {
    background-image: url("../../images/italy.png");
    opacity: var(--mainOpacity);
    height: 30em !important;
}

h1 {
    font-family: "Fjalla One";
    text-align: center !important;
    padding-top: 2em !important;
    color: white !important;
    font-size: 4em !important;
}

.btn-toolbar {
    display: flex !important;
    justify-content: center !important;
}

#quiz-btn {
    font-family: "Roboto";
    color: white !important;
    margin-top: 3em !important;
    background-color: transparent !important;
    border: solid .05em white !important;
    border-radius: 0em !important;
}

#quiz-btn:hover {
    transition: all 0.5s ease-in-out;
        background-color: var(--mainOpacity) !important;
}

2 个答案:

答案 0 :(得分:1)

要创建叠加层,应将内容包装在另一个div中。然后使用CSS,将其放置在标题/背景的正前方,如下所示:https://codesandbox.io/s/mystifying-ramanujan-sq491

Header.js

const Header = () => {
  return (
    <div className="header">
      <div className="dark-overlay">
        <h1 className="title">Linguist Otaku</h1>
        <ButtonToolBar>
          <Button href="/quiz" size="lg" id="quiz-btn">
            Quiz Now
          </Button>
        </ButtonToolBar>
      </div>
    </div>
  );
};

CSS

.dark-overlay {
  background-color: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

答案 1 :(得分:0)

您可以将css中的背景图像和黑色覆盖层一起提供给“标题”或您的父母,如下所示:

background-image: linear-gradient( rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) ),url("../../images/italy.png");