如何在Django模板中設置背景圖片?假設我的背景圖片的網址是www.randomlink.com/static/backgroundimagesplash.jpg如何在Django模板中設置背景圖片?
我看了一下Pinterest的主頁。你們許多人都知道,Pinterest是使用Django構建的。我在他們的主頁上檢查了他們的一些元素。
一個他們所使用的圖形的是這樣的飛濺的形象在這裏:PinterestSplashImage.jpg
的開機畫面設置在底部中心。有一兩件事我注意到的是,閃屏圖像大小調整相對於它在觀看瀏覽器的大小調整
這是我當前的主頁模板:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<link href="www.randomlink.com/static/favicon.ico" rel="icon" type="image/x-icon">
<head>
<title>Homepage</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style>
body{
font-family:Arial,Helvetica,sans-serif;
font-size: 12px;
}
</style>
</head>
<body>
{{ state }}
<form action="/login/" method="post">
{% if next %}
<input type="hidden" name="next" value="{{ next }}" />
{% endif %}
username:
<input type="text" name="username" value="{{ username}}" /><br />
password:
<input type="password" name="password" value="" /><br />
<input type="submit" value="Log In" />
</form>
</body>
</html>
一個如何設置www.randomlink .com/static/backgroundimagesplash.jpg位於底部中心,並使Pinterest的大小與Pinterest的主頁一樣大小? (爲了爭論,飛濺圖像將與Pinterest飛濺圖像具有相同的尺寸)
Django模板是HTML。所以你應該問如何在HTML頁面中設置背景。您可以將背景圖像設置爲html或body標籤。通常你在base.html文件中設置主要的可視化元素。 – aldux