Django不顯示CSS的效果(基於Django模板的靜態資源配置問題)

拾一贰叁發表於2024-04-21

在搞畢設過程中,習慣起見我直接在網上找了現成的前端設計頁面,如圖:

Django不顯示CSS的效果(基於Django模板的靜態資源配置問題)

這種前端專案的結構一般是一個login.html、一個style.css、一個背景圖片即可搞定的,直接點選html,瀏覽器中開啟的就是上圖所示的介面效果。

但是:當我把前端所有檔案扔進Django App的templates資料夾後,執行專案的效果卻是:

Django不顯示CSS的效果(基於Django模板的靜態資源配置問題)

很顯然CSS效果不能正常顯示,這是因為Django找不著css檔案(儘管把html和css都放到templates資料夾下了,可它就是找不著...)

這是因為django的模板機制比較...那啥,css檔案要單獨放到一個資料夾裡,做如下修改:

html檔案還是放在templates裡,這個不用移動位置。

在django專案的根目錄下建立一個資料夾static,將css檔案扔進static裡。

開啟django的settings.py檔案,確保裡面有如下幾行:

STATIC_URL = '/static/'

STATICFILES_DIRS = [
    os.path.join(BASE_DIR, 'static'),
]

接下來修改原來的login.html檔案(只需關注下面程式碼的第一行和第九行):

{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>登入系統</title>
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="{% static 'style.css'%}"/>
</head>
<body>
  <div class="container">
    <form action="#" class="login-form">
      <h2>登入</h2>
      <input type="text" name="username" placeholder="使用者名稱">
      <input type="password" name="password" placeholder="密碼">
      <button type="submit">登入</button>
    </form>
  </div>
</body>
</html>

在首行新增了:{% load staticfiles %},第九行,使用css時的引用格式改為:href="{% static 'style.css'%}"這種形式。

接下來重新啟動,開啟後的效果為:

Django不顯示CSS的效果(基於Django模板的靜態資源配置問題)

很接近成功了,但是卻不顯示背景圖片,接下來需要將背景圖片也扔進static資料夾裡,style.css檔案為(直接使用背景圖片了,因為背景圖片與css都在static下):

html,body{
  margin: 0;
  font-family: "PingFang SC","Microsoft Yahei",sans-serif;
}

.container{
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(photo-1542332213-31f87348057f.avif) fixed no-repeat;  
  background-size: cover;
}

.login-form{
  width: 240px;
  height: 220px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  text-align: center;
  position:relative;
  z-index: 100;
  background: inherit;
  border-radius: 18px;
  overflow: hidden;
}

.login-form::before{
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  top: -10px;
  left: -10px;
  overflow: hidden;
  background: inherit;
  box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.25);
  filter: blur(5px);
  z-index: -1;
}

.login-form h2{
  font-size: 18px;
  font-weight: 400;
  color: #3d5245;
}

.login-form input,
.login-form button{
  margin: 6px 0;
  height: 36px;
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 0 14px;
  color: #3d5245;
}
.login-form input::placeholder{
  color: #3d5245;
}
.login-form button:focus,
.login-form input:focus{
  outline: 0;
}

.login-form button{
  margin-top:24px;
  background-color: rgba(209, 179, 9, 0.4);
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
}

.login-form button:hover{
  background-color: rgba(209, 179, 9 , 0.7);
}

.login-form button::before,
.login-form button::after{
  content: "";
  display: block;
  width: 80px;
  height: 100%;
  background: rgba(179, 255, 210, 0.5);
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-15deg);
  filter: blur(30px);
  overflow: hidden;
  transform: translateX(-100px);
}

.login-form button:hover::after{
  width: 40px;
  background: rgba(179, 255, 210, 0.3);
  left: 60px;
  opacity: 0;
  filter: blur(5px);
}
.login-form button:hover::before{
transition: 1s;
transform: translateX(320px);
opacity: 0.7s;
}
.login-form button:hover::after{
  transition: 1s;
  transform: translateX(320px);
  opacity: 1;
}

重新啟動後正常顯示前端頁面。

總體的檔案結構就長下面這樣:

Django不顯示CSS的效果(基於Django模板的靜態資源配置問題)

相關文章