開發環境配置
1.安裝vscode
安裝插件
~~~
Auto Close Tag
Live Server
css peek
open in browser
view in browser
Path Autocomplete
HTML CSS Support
Auto Rename Tag
Color Highlight
Bootstrap 3 Snippets
chinese
Vetur
Vsc View In Browser
~~~
在設置中添加
"editor.parameterHints": true,
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
}
2.快捷鍵配置
[
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+/",
"command": "editor.action.blockComment",
"when": "editorTextFocus"
},
{
"key": "ctrl+w",
"command": "extension.openInDefaultBrowser"
},
{
"key": "alt+b",
"command": "-extension.openInDefaultBrowser"
}
]
3.npm的配置
npm config set registry https://registry.npm.taobao.org
- bootstrap
- 第一章 vscode開發環境的配置
- 第二章 vscode快捷鍵
- 第三章 bootstrap3模板
- 第四章 引入本地文件
- 第五章 媒體查詢
- 補充知識點
- 第六章 表單
- 6-1 垂直表單
- 6-2 水平表單
- 6-3 內聯表單
- 6-4 表單控件input
- 6.4.1select下拉框
- 6.4.2textarea
- 6.4.3checkbox/radio
- 6.4.4check/radio水平排列
- 6.4.5按鈕
- 6.4.6表單控件大小
- 6.4.7表單控件狀態(驗證)
- 6.4.8表單提示信息
- 6.4.9有圖標的表單
- 第七章 響應式布局
- 7-1 實現原理
- 7-2 列偏移排序
- 第八章 js組件
- 1.modal模態框
- 第九章 菜單,按鈕,導航
- 9-1 下拉菜單
- 9-2 下拉菜單(帶分割線)
- 9-3 下拉(菜單標題)
- 9-4 上彈菜單
- 9-5 按鈕(按鈕組,工具欄)
- 9-6 按鈕(嵌套按鈕組-下拉)
- 9-7 按鈕(垂直分組)
- 第十章 導航
- 10-1 tabs
- 10-2 垂直堆疊導航
- 10-3 自適應導航
- 10-4 下拉導航
- 10-5 breadcrumb導航
- 第十一章 導航條
- 11-1 為導航加標題
- 11-2 帶表單的導航
- 11-3 固定導航
- 11-4 響應式導航