晔子 发表于 2023-12-30 17:16:48

django练手系列(四):制作网站的导航栏

外观部分:

一. 下载Bootstrap。网站的前端样式我采用的是Bootstrap v3。Bootstrap的网址是https://www.bootcss.com/。Bootstrap V3运行依赖Jquery,也需要安装Jquery。我使用的Jquery版本是Jquery-3.7.1。
二.文件夹规划。
1. 在app下新建static文件夹,存放静态文件。
2.在static下新建css,js,plugin文件夹,分别放置css文件,js文件,plugin文件。
3、在templates下新建app文件夹,app文件夹下新建layout文件夹,用来存放网页模板。
4、把下载好的bootstrap文件放到plugin文件夹中。
5、把下载好的Jquery文件复制到js文件夹中。
6、在layout文件夹下新建一个HTML文件,作为HTML的模板文件夹。三.安装Bootstrap。
在layout文件夹下新建一个HTML文件,命名为basic.html;basic.html的代码如下:
<!DOCTYPE html>

{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
</title>

<link rel="stylesheet" href="{% static 'plugin/bootstrap-3.4.1-dist/css/bootstrap.min.css' %}">
</head>
<body>




</body>
</html>四.在Bootstrap官网选择合适的导航栏样式,并把代码复制到basic.html。
我在bootstrap网站上选择了默认样式的导航条,直接把它粘贴到网页的标签之间。粘贴后的完整代码如下:
        <!DOCTYPE html>

{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8">
<title>
</title>

<link rel="stylesheet" href="{% static 'plugin/bootstrap-3.4.1-dist/css/bootstrap.min.css' %}">
</head>
<body>




</body>
</html>      Toggle navigation                Brand
   
[*]Link (current)   
[*]Link   
[*]      Dropdown       
      
[*]Action      
[*]Another action      
[*]Something else here      
[*]      
[*]Separated link      
[*]      
[*]One more separated link      

                  Submit   
   
[*]Link   
[*]      Dropdown       
      
[*]Action      
[*]Another action      
[*]Something else here      
[*]      
[*]Separated link      

下图是直接使用bootstrap默认导航栏的样子


来源:https://www.cnblogs.com/shuxieben/p/17926677.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: django练手系列(四):制作网站的导航栏