天天看點

《VS Code》_VS Code快速生成H5模闆代碼

1、VS Code 中 首選項 --》 使用者代碼片段打開一個配置的html.json檔案

《VS Code》_VS Code快速生成H5模闆代碼

2、在html.json檔案的添加代碼後儲存檔案,重新開機VS  Code 

"h5 sample": {
    "prefix": "h",
    "body": [
      "<!DOCTYPE html>",
      "<html zh-CN\">\n",
      "<head>",
      "\t<meta charset=\"UTF-8\">",
      "\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0,minimal-ui:ios\">",
      "\t<meta http-equiv=\"X-UA-Compatible\" content=\"ie=edge\">",
      "\t<title>Document</title>",
      "\t<link rel=\"stylesheet\" href=\"$1\">",
      "\t<script src=\"$2\"></script>",
      "</head>\n",
      "<body>\n$3",
      "</body>\n",
      "</html>"
    ],
    "description": "The full sample code - html5."
  }
           

     "prefix": "h",代表使用者鍵入h時會提示出現這一段H5模闆代碼片段。

繼續閱讀