zoukankan
html css js c++ java
初入前端框架bootstrap--Web前端
Bootstraps是一种简洁、直观、强悍的前端开发框架,它让web开发更迅速、简单。对于初入Bootstrap的小白,高效进入主题很重要,能为我们节省很多时间,下面我将对使用Bootstrap开发前应该做什么做出详细指引,初学者可以围观一下,大神可以忽略哦!
1、下载Bootstrap框架
Bootrap:http://getbootstrap.com/2.3.2/getting-started.html
Bootrap中文网:http://v3.bootcss.com/getting-started/#download
解压后的Bootstrap文件夹:
2、下载j
query.js
jQuery官网:https://jquery.com/download/
笔者对Bootstrap框架以及jquery进行了收集,你可直接下载
bootstrap-3.3.7-dist.zip
,
jQuery.zip
(当前时间最新版)
3、
你需要把jQuery.js放入js文件夹中
4、在html中引入框架文件(以下两种方式可以按需选择)
1)引入本地文件
bootstrap.min.css:
<link href="css/bootstrap.min.css" rel="stylesheet">
bootstrap.min.js:
<script src="js/bootstrap.min.js"></script>
jquery-3.2.1.min.js:
<script src="js/jquery-3.2.1.min.js"></script>
2)引入网络上文件
使用 BootCDN 提供的免费 CDN 加速服务(同时支持 http 和 https 协议),即引入网络上的文件,需要电脑联网。
bootstrap.min.css:
<link rel="stylesheet"href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
bootstrap.min.js:
<script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
jQuery.js:
https://code.jquery.com/jquery-3.2.1.min.js
5、引入meta,实现屏幕适配
<meta name="viewport" content="width=device-width, initial-scale=1">
6、最终的html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>bootstrap</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
href="css/bootstrap
.min.css"
rel="stylesheet">
</head>
<body>
</body>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</html>
图示:
查看全文
相关阅读:
VSTO开发指南(VB2013版) 第四章 Excel编程
VSTO开发指南(VB2013版) 第三章 Excel编程
VSTO开发指南(VB2013版) 第二章 Office解决方案介绍
VSTO开发指南(VB2013版) 第一章 Office对象模型
打印预览
打印
工具函数
开始使用
模版对应信息
解决PLSQL或者sqlplus连接oracle慢的方法
原文地址:https://www.cnblogs.com/qikeyishu/p/7534885.html
最新文章
c# 异步编程总结
思科路由器、交换机配置Console 线线序 (亲测可以)
.NET Core WebAPI post参数传递时后端的接收方式
Http POST 提交 415错误 Unsupported Media Type 解决方案
理解POP、OOP、AOP编程
fatal: Authentication failed (二)
fatal: Authentication failed (一)
Ext 简单定时任务
C# System.Data.SqlClient.SqlException: 将截断字符串或二进制数据。 语句已终止。
Ext js 实现图片上传
热门文章
Sql Server A库a表的数据,复制给B库b表数据问题
.Net 学习之泛型(一)
C# 函数调用学习代码
Unexpected token u in JSON at position 0 at JSON.parse (<anonymous>)
.NET Core 应用部署
.NET Core MVC 静态文件应用
JS 多数组中取最大数组,分组
部署visual studio code开发vue.js的环境
CommunityServer的编译
我喜欢的博客园代码模式
Copyright © 2011-2022 走看看