我的所有 CSS 文件都被导入到我的 React JS 文件中,但我没有导入它们?

Ale*_*iro 2 html javascript css reactjs

我在使用 React 制作网站时发现了一些奇怪的问题。

我已将我的文件系统组织到一个包含 Components-js 和 Components-css 的文件夹中,并与相应的 Text.js 和 Text.css 文件进行匹配。

文件系统设置

下面是我的 Login.js/css 和 Signup.js/css 文件。

登录.js

import '../components-css/Login.css';
import Logo from './Logo.js';
import { useState } from 'react';
import { useNavigate, Link } from 'react-router-dom';
import TextInput from './TextInput.js';


function Login(props) {

    const [error, setError] = useState(false);

    const navigate = useNavigate();

    const trigger_error = () => {
        console.log(error)

        if (error === false) {
            setError(true);
        }
        else {
            setError(false);
        }
    }


    const check_login_info = () => {
        // TODO: Insert code here to check for username and password match
        navigate('/Jobs')
    }

    return (
        <div className='login-card'>
            <div className='login-card-image'>
            </div>
            <div className='login-contents'>
                <Logo/>
                <div className='login-contents-header'>
                    Sign In
                    {error ? <p className='error'>Invalid Login. Please try again.</p>: <></>}
                </div>
                <TextInput label={'Email'}/>
                <TextInput label={'Password'}/>
                <input type='button' className='submit' onClick={() => check_login_info()} value='Log In'/>
                <div className='bottom_text'>
                    New to Product? <Link className='sign-up' to='/signup'>Sign Up</Link>
                </div>
            </div>
        </div>
    )

};

export default Login;
Run Code Online (Sandbox Code Playgroud)

登录.css


.login-card {
    background-color: white;
    border-radius: 20px;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 90%;
    width: 90%;
    padding: 0px;
    justify-content: center; 
    align-items: center;
    display:flex;

}

@media (max-width: 800px) {
    /* CSS that should be displayed if width is equal to or less than 800px goes here */
    .login-card {
        flex-direction: column-reverse; 
    }
}

@media (min-width:800px) {
    .login-card { 
        flex-direction: row;     
    }
    
}

/* Uncomment for card-style background image */
.login-card-image {
    background-image: url('../images/login-background-3.jpg');
    height: 100%;
    width: 100%;
    background-size: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    /* border-radius: 20px; */
    
}

.login-contents {
    display: flex;
    padding: 10%;
    width: 50%;
    flex-direction: column;
    /* background-color: red; */
}


@media (min-width:800px) {
    .login-contents-header {
        margin: 5%;
        padding: 5%;
        font-size: 30px;
        height: 50%;
        justify-content: center;
        text-align: center;
    }

   
}

@media (max-width:800px) {
    .login-contents-header {
        margin: 5%;
        padding: 5%;
        padding-bottom: 0px;
        margin-bottom: 0px;
        font-size: 20px;
        height: 50%;
        justify-content: center;
        text-align: center;
    }


}

.login-contents span {
    padding-top: 40px;
}

/* CSS */
.submit {

  align-items: center;
  background-color: rgb(202, 225, 246);
  border-radius: 12px;
  box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .1) 0 6px 20px;
  box-sizing: border-box;
  color: #121212;
  cursor: pointer;
  display: inline-flex;
  flex: 1 1 auto;
  font-family: Inter,sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin: 10%;
  margin-left: 25%;
  outline: none;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s,-webkit-box-shadow .2s;
  width: 50%;
  white-space: nowrap;
  border: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.submit:hover {
  box-shadow: rgb(148, 179, 206) 0 0 0 3px, transparent 0 0 0 0;
}

.submit {
    color: black;
    text-decoration: none;
}

.bottom_text {
    /* background-color: red; */
    justify-content: center;
    text-align: center;
}

.sign-up {
    color: rgb(26, 158, 202);
    text-decoration: none;
}

.error {
    color: red;
    font-size: 20px;
    margin: 0px;
    margin-top: 30px;
}
Run Code Online (Sandbox Code Playgroud)

注册.js

import '../components-css/Signup.css'
import Logo from '../components-js/Logo.js';
import TextInput from './TextInput.js';
import Back from '../images/arrow.png';
import {Link} from 'react-router-dom'

function Signup() {
    return (
        <div className='signup'>
            <div className='signup-form-container'>
                <div className='signup-form-padding'>
                    <div className='back'>
                        <Link to='/'>
                            <img src={Back} alt='backarrow' width='100%' height='80%'/>
                        </Link>
                    </div>
                    <div className='logo'>
                        <Logo/>
                    </div>
                    <div className='header'>
                        Create Account
                    </div>
                    <div className='form-container'>
                        <form className='form'>
                            <TextInput label={'First Name'}/>
                            <TextInput label={'Last Name'}/>
                            <TextInput label={'Email'}/>
                            <TextInput label={'Phone Number'}/>
                            <TextInput label={'Password'}/>
                            <TextInput label={'Confirm Password'}/>
                        </form>
                        <input className='submit' type='submit' value='Submit'></input>
                    </div>
                </div>
            </div>
        </div>
    );
}

export default Signup;
Run Code Online (Sandbox Code Playgroud)

注册.css


.signup {
    justify-content: center;
    height: 100vh;
    /* background-color: red; */
    position:absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.signup-form-container {
    height: 85%;
    width: 40%;
    margin: auto;
    margin-top: 3%;
    margin-bottom: 5%;
    background-color: white;
    border-radius: 50px;
    overflow: auto;
}

.signup-form-padding {
    height: 90%;
    width: 90%;
    margin: auto;
    margin-top: 5%;
    /* background-color: red; */
    justify-content: center;
    position: relative;
}

.back {
    position: absolute;
    top: 0px;
}

.back img{
    width: 20px;
    height: 20px;
}

.logo {
    height: 11%;
    width: 70%;
    margin:auto;
    display:flex;
    flex-direction: row;
    /* background-color: red; */
}

.header {
    text-align: center;
    font-size: 20px;
    margin-bottom: 2%;
}



.form {
    width: 60%;
    justify-content: center;
    margin-bottom: -50px;

}

.form input {
   margin-top: 0px;
   margin-left: 0px;
}

.submit {
}
Run Code Online (Sandbox Code Playgroud)

当呈现我的注册页面时,它以某种方式使用 Login.css 中的 css 来显示“提交”按钮。经过进一步检查,浏览器似乎正在加载我的所有 css 文件,一个接一个(在下面的屏幕截图中)。我通过查看浏览器本身的检查器注意到了这一点: 页面的渲染

在此输入图像描述

怎么了?我不确定为什么它似乎会同时渲染所有样式。

Ada*_*mas 5

这是预料之中的。ESM 导入,包括通过 Webpack 之类的 CSS 导入,都是静态导入。它们将在捆绑包加载后立即加载,并且无论您导入它的组件是否加载都没有关系。之所以包含它,是因为您在代码中的某个位置导入了登录和注册——因此 CSS 导入可以一次性解决。

CSS-in-js 库之类的库styled-components 在渲染相关组件时才加载样式。静态 CSS 导入并不是真正的 css-in-js。这些是全球提供的。如果您想要更好的样式范围,您可以考虑这些解决方案。

您还可以考虑 CSS 模块。