
WebApp
Lich Howger
这个作者很懒,什么都没留下…
展开
-
042-网页应用开发WebApplicationDevelopment(十 一)
网页应用开发WebApplicationDevelopment(十 一) 网页应用开发WebApplicationDevelopment(十 一) Build Tools原创 2019-12-11 23:15:48 · 151 阅读 · 0 评论 -
038-网页应用开发WebApplicationDevelopment(十)
网页应用开发WebApplicationDevelopment(十) 网页应用开发WebApplicationDevelopment(十) Simple JS const data_array = []; // Function to ensure parameters used in request are encoded correctly const enc...原创 2019-12-11 05:57:40 · 168 阅读 · 0 评论 -
034-网页应用开发WebApplicationDevelopment(九)
网页应用开发WebApplicationDevelopment(九) 先来介绍一下不同类型的response code 1xx informational 2xx success 3xx redirection 4xx client error 5xx server error 然后我们来搞服务器代码 装一下node.js windo...原创 2019-12-11 03:36:15 · 163 阅读 · 0 评论 -
027-网页应用开发WebApplicationDevelopment(八)
OK Now we are going to learn Web Development. API Application Programming Interface An API specifies some form of software or hardware interation, in terms of 1.Inputs 2.Processe...原创 2019-11-20 06:40:15 · 195 阅读 · 0 评论 -
021-网页应用开发WebApplicationDevelopment(七)
HTML表单form 写个最简单的表单 <body> <form method="get"> <input type="text"> <input type="password"> <input type="submit"> </form> </body> 一个...原创 2019-11-12 18:54:25 · 216 阅读 · 0 评论 -
018-网页应用开发WebApplicationDevelopment(六)
JavaScript 先来写个最简单的js <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="function.js">...原创 2019-11-08 10:05:22 · 186 阅读 · 0 评论 -
015-网页应用开发WebApplicationDevelopment(五)
我们来用js来写一个按钮控制菜单的功能 先来一个简单的布局 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> ...原创 2019-11-01 02:31:24 · 245 阅读 · 0 评论 -
011-网页应用开发WebApplicationDevelopment(四)
Flexbox 当一个元素,比如div display: flex的时候 就成为了一个flex容器 看看代码 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> &...原创 2019-10-23 04:19:43 · 209 阅读 · 0 评论 -
008-网页应用开发WebApplicationDevelopment(三)
Responsive Web Design响应式网页设计 一个建筑的基础决定了它的足迹,决定了它的框架和外观.建筑的阶段更加不可变.创造性的想法能决定物理形态. 创造网页是一件完全不同的事情.我们的工作是被短暂决定的,而且可能一年两年就被更换了. 现在移动端比电脑更加活跃,而且现在有越来越多不同的设备.我们需要为每个设备设计一个网页吗,不可能的.那么我们...原创 2019-10-17 18:06:17 · 304 阅读 · 0 评论 -
005-网页应用开发WebApplicationDevelopment(二)
我们来模仿一下Google的网页作为练习 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Google</title> <link rel="stylesheet" hre...原创 2019-10-10 22:48:49 · 254 阅读 · 0 评论 -
000-网页应用开发WebApplicationDevelopment(一)
HTML,CSS,JavaScript HTML is the language used to describe the structure and content of our webpage. It is not concerned with presentation or how the webpage will ultimately look, it is more foc...原创 2019-10-03 19:54:38 · 481 阅读 · 0 评论