摘要: <p>段落标签</p> 阅读全文
posted @ 2021-11-28 14:18 lyzhi 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 一 . js 变量声明和数据类型 ES6-ES11 阅读全文
posted @ 2021-11-21 15:01 lyzhi 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 一.下载与安装 二.变量与数据类型 三.函数 四.类 阅读全文
posted @ 2021-11-16 15:20 lyzhi 阅读(30) 评论(0) 推荐(0) 编辑
摘要: <h1>这是一个一级标题</h1> <h2>这是一个二级标题</h2> <h3>这是一个三级标题</h3> <p>这是一段文本</p> <hr>//这是一个换行线标签 <br>//这是一个换行标签 <form> <input type="text"> <input type="password"> 阅读全文
posted @ 2021-11-11 19:54 lyzhi 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Stun 服务器 npm下载stun包 npm i stun -s google stun服务器 google的stun的服务器一般国内访问较慢,所以一般自己搭建一个服务器 const stun = require('stun'); stun.request('stun.l.google.com:1 阅读全文
posted @ 2021-11-10 13:42 lyzhi 阅读(583) 评论(0) 推荐(0) 编辑
摘要: http服务器搭建 const http = require('http');//引入http模块 const server=http.createServer(function(req,res){ if(req.url=='/'){ res.end('返回数据') } }).listen(4000 阅读全文
posted @ 2021-11-07 15:21 lyzhi 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 俄罗斯方块背景- canvans 第一次写不知道说些什么好,直接上代码了@_@... jquery引入 <script src="https://cdn.bootcdn.net/ajax/libs/jquery/2.2.0/jquery.js"></script> index.js代码 $(func 阅读全文
posted @ 2021-11-01 14:24 lyzhi 阅读(96) 评论(0) 推荐(0) 编辑